diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-03 13:32:56 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-03 13:32:56 +0000 |
commit | 2479e06848a7625b1b55511b43f86abc3a76c93d (patch) | |
tree | 5f229a8dad5a33c0d0698e2474b943203b38a5c1 /lib/strtoofft.h | |
parent | f2abe03fcf09acc3727e995c3304dc80caea39f5 (diff) | |
download | curl-2479e06848a7625b1b55511b43f86abc3a76c93d.tar.gz |
David Byron's work on making libcurl only require winsock 1.1 on Windows
machines.
Diffstat (limited to 'lib/strtoofft.h')
-rw-r--r-- | lib/strtoofft.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strtoofft.h b/lib/strtoofft.h index 9944ba1d9..27c3668e3 100644 --- a/lib/strtoofft.h +++ b/lib/strtoofft.h @@ -45,7 +45,7 @@ /* For MSVC7 we can use _strtoi64() which seems to be a strtoll() clone */ #if defined(_MSC_VER) && (_MSC_VER >= 1300) -#define strtoll _strtoi64 +#define strtoofft _strtoi64 #else /* MSVC7 or later */ curl_off_t curlx_strtoll(const char *nptr, char **endptr, int base); #define strtoofft curlx_strtoll |