Revision ae3f41f20a0b5a9fa3e83a12557c887855b920f3 authored by Pete Wyckoff on 25 December 2011, 02:07:38 UTC, committed by Junio C Hamano on 27 December 2011, 18:19:31 UTC
Make sure it leaves the path, below //depot, in git.

Signed-off-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 7fbe1ce
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