compat / strtoimax.con commit Merge branch 'js/msgfmt-on-windows' of ../git-gui into js/git-gui-msgfmt-on-windows (90dbf22)
   1#include "../git-compat-util.h"
   2
   3intmax_t gitstrtoimax (const char *nptr, char **endptr, int base)
   4{
   5#if defined(NO_STRTOULL)
   6        return strtol(nptr, endptr, base);
   7#else
   8        return strtoll(nptr, endptr, base);
   9#endif
  10}