aboutsummaryrefslogtreecommitdiff
path: root/lib/strtoofft.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-03-03 13:32:56 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-03-03 13:32:56 +0000
commit2479e06848a7625b1b55511b43f86abc3a76c93d (patch)
tree5f229a8dad5a33c0d0698e2474b943203b38a5c1 /lib/strtoofft.h
parentf2abe03fcf09acc3727e995c3304dc80caea39f5 (diff)
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.h2
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