tvl-depot/third_party/git/compat/strtoumax.c
2020-01-11 23:40:29 +00:00

10 lines
217 B
C

#include "../git-compat-util.h"
uintmax_t gitstrtoumax (const char *nptr, char **endptr, int base)
{
#if defined(NO_STRTOULL)
return strtoul(nptr, endptr, base);
#else
return strtoull(nptr, endptr, base);
#endif
}