From f67787066394b2b348071a8046aad00ef553d3f7 Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Wed, 14 Feb 2007 12:11:54 +0100 Subject: [PATCH] strtoumax is not available on Windows; fall back to strtoul. --- git-compat-util.h | 1 + 1 file changed, 1 insertion(+) diff --git a/git-compat-util.h b/git-compat-util.h index cafca04d01..761458cef9 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -379,6 +379,7 @@ int mingw_socket(int domain, int type, int protocol); #define setlinebuf(x) #define fsync(x) +#define strtoumax strtoul extern void quote_argv(const char **dst, const char **src); extern const char *parse_interpreter(const char *cmd);