mirror of
https://github.com/curl/curl.git
synced 2026-07-23 22:17:16 +03:00
MSVC's __int64 data type is only available when _INTEGRAL_MAX_BITS >= 64
This commit is contained in:
parent
95cef39def
commit
4dbfc91e2b
3 changed files with 3 additions and 3 deletions
|
|
@ -417,7 +417,7 @@
|
|||
/* ===================================== */
|
||||
|
||||
#elif defined(_MSC_VER)
|
||||
# if (_MSC_VER >= 900)
|
||||
# if (_MSC_VER >= 900) && (_INTEGRAL_MAX_BITS >= 64)
|
||||
# define CURL_SIZEOF_LONG 4
|
||||
# define CURL_OFF_T __int64
|
||||
# define CURL_FORMAT_CURL_OFF_T "I64d"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue