Revision a9064b25c016e3ac69a724962f794c4dc46fdba5 authored by Junio C Hamano on 28 November 2012, 21:42:36 UTC, committed by Junio C Hamano on 28 November 2012, 21:42:37 UTC
* fc/zsh-completion:
  completion: start moving to the new zsh completion
  completion: add new zsh completion
2 parent s b893e88 + d8b4531
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