mirror of
https://github.com/curl/curl.git
synced 2026-07-27 15:39:00 +03:00
MSVC uses 'i64' suffix for 64-bit sizes.
This commit is contained in:
parent
1eddbb1b47
commit
1dc50e21c4
1 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue