Revision 04d70dd64837a088f1e95286e328801085631e82 authored by Junio C Hamano on 21 November 2018, 13:57:53 UTC, committed by Junio C Hamano on 21 November 2018, 13:57:53 UTC
Developer aid.

* tg/conflict-marker-size:
  .gitattributes: add conflict-marker-size for relevant files
2 parent s 7532a18 + b9b07ef
Raw File
strtoimax.c
#include "../git-compat-util.h"

intmax_t gitstrtoimax (const char *nptr, char **endptr, int base)
{
#if defined(NO_STRTOULL)
	return strtol(nptr, endptr, base);
#else
	return strtoll(nptr, endptr, base);
#endif
}
back to top