compat / strtoumax.con commit Merge branch 'ag/rebase-i-in-c' into js/rebase-in-c-5.5-work-with-rebase-i-in-c (5ab7e0f)
   1#include "../git-compat-util.h"
   2
   3uintmax_t gitstrtoumax (const char *nptr, char **endptr, int base)
   4{
   5#if defined(NO_STRTOULL)
   6        return strtoul(nptr, endptr, base);
   7#else
   8        return strtoull(nptr, endptr, base);
   9#endif
  10}