1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

MSVC uses 'i64' suffix for 64-bit sizes.

This commit is contained in:
Gisle Vanem 2004-10-10 14:08:05 +00:00
parent 1eddbb1b47
commit 1dc50e21c4

View File

@ -58,7 +58,10 @@ curl_off_t curlx_strtoll(const char *nptr, char **endptr, int base);
#define curlx_strtoofft strtol
#endif
#ifdef HAVE_LL
#if defined(_MSC_VER)
#define CURL_LLONG_MIN 0x8000000000000000i64
#define CURL_LLONG_MAX 0x7FFFFFFFFFFFFFFFi64
#elif defined(HAVE_LL)
#define CURL_LLONG_MIN 0x8000000000000000LL
#define CURL_LLONG_MAX 0x7FFFFFFFFFFFFFFFLL
#else