From 4dbfc91e2b69497ac4dfc78e88e76c4f98633ad2 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Thu, 21 Aug 2008 06:58:12 +0000 Subject: MSVC's __int64 data type is only available when _INTEGRAL_MAX_BITS >= 64 --- lib/mprintf.c | 2 +- lib/strtoofft.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/mprintf.c b/lib/mprintf.c index a358cc10a..93982a5b1 100644 --- a/lib/mprintf.c +++ b/lib/mprintf.c @@ -65,7 +65,7 @@ # define LONG_LONG_TYPE long long # define HAVE_LONG_LONG_TYPE #else -# if defined(_MSC_VER) && (_MSC_VER >= 900) +# if defined(_MSC_VER) && (_MSC_VER >= 900) && (_INTEGRAL_MAX_BITS >= 64) # define LONG_LONG_TYPE __int64 # define HAVE_LONG_LONG_TYPE # else diff --git a/lib/strtoofft.h b/lib/strtoofft.h index 6c1d944e1..6d7a14930 100644 --- a/lib/strtoofft.h +++ b/lib/strtoofft.h @@ -45,7 +45,7 @@ # ifdef HAVE_STRTOLL # define curlx_strtoofft strtoll # else -# if defined(_MSC_VER) && (_MSC_VER >= 1300) +# if defined(_MSC_VER) && (_MSC_VER >= 1300) && (_INTEGRAL_MAX_BITS >= 64) _CRTIMP __int64 __cdecl _strtoi64(const char *, char **, int); # define curlx_strtoofft _strtoi64 # else -- cgit v1.2.3