diff options
Diffstat (limited to 'third_party/git/compat/strtoimax.c')
-rw-r--r-- | third_party/git/compat/strtoimax.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/third_party/git/compat/strtoimax.c b/third_party/git/compat/strtoimax.c deleted file mode 100644 index ac09ed89e710..000000000000 --- a/third_party/git/compat/strtoimax.c +++ /dev/null @@ -1,10 +0,0 @@ -#include "../git-compat-util.h" - -intmax_t gitstrtoimax (const char *nptr, char **endptr, int base) -{ -#if defined(NO_STRTOULL) - return strtol(nptr, endptr, base); -#else - return strtoll(nptr, endptr, base); -#endif -} |