diff options
Diffstat (limited to 'src/Common/libzip/compat.h')
-rw-r--r-- | src/Common/libzip/compat.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Common/libzip/compat.h b/src/Common/libzip/compat.h index ed1f8726..dc73f5ce 100644 --- a/src/Common/libzip/compat.h +++ b/src/Common/libzip/compat.h @@ -105,6 +105,12 @@ typedef char bool; #if !defined(HAVE__SETMODE) && defined(HAVE_SETMODE) #define _setmode setmode #endif +#if !defined(HAVE_STRTOLL) && defined(HAVE__STRTOI64) +#define strtoll _strtoi64 +#endif +#if !defined(HAVE_STRTOULL) && defined(HAVE__STRTOUI64) +#define strtoull _strtoui64 +#endif #endif #ifndef HAVE_FSEEKO |