Revision 325602ce120e7bd7321b9ed409b49b48fd20888e authored by Junio C Hamano on 07 October 2014, 20:41:03 UTC, committed by Junio C Hamano on 07 October 2014, 20:41:03 UTC
* maint:
  git-tag.txt: Add a missing hyphen to `-s`
2 parent s 565301e + 3c2dc76
Raw File
strtoumax.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
}
back to top