X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=git-compat-util.h;h=8f3972cd3295665b8b1f69b5db7aff67c8c61613;hb=a95750c4e8f78eb89c277abd41f05be58715314f;hp=8b4dd5c022a160de5c68d83b6237799c23e6ae0a;hpb=f1f509cc4504ebe9e2922c7bc61794183e3d441a;p=git.git diff --git a/git-compat-util.h b/git-compat-util.h index 8b4dd5c02..8f3972cd3 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -116,7 +116,12 @@ #else #include #endif -#ifndef __MINGW32__ +#if defined(__MINGW32__) +/* pull in Windows compatibility stuff */ +#include "compat/mingw.h" +#elif defined(_MSC_VER) +#include "compat/msvc.h" +#else #include #include #include @@ -130,6 +135,7 @@ #include #include #include +#include #ifndef NO_INTTYPES_H #include #else @@ -145,12 +151,6 @@ #include #define _ALL_SOURCE 1 #endif -#else /* __MINGW32__ */ -/* pull in Windows compatibility stuff */ -#include "compat/mingw.h" -#endif /* __MINGW32__ */ -#ifdef _MSC_VER -#include "compat/msvc.h" #endif #ifndef NO_LIBGEN_H @@ -351,6 +351,8 @@ extern size_t gitstrlcpy(char *, const char *, size_t); #ifdef NO_STRTOUMAX #define strtoumax gitstrtoumax extern uintmax_t gitstrtoumax(const char *, char **, int); +#define strtoimax gitstrtoimax +extern intmax_t gitstrtoimax(const char *, char **, int); #endif #ifdef NO_STRTOK_R