]> granicus.if.org Git - curl/commitdiff
Added prototype for _strtoi64().
authorGisle Vanem <gvanem@broadpark.no>
Tue, 6 Nov 2007 16:20:54 +0000 (16:20 +0000)
committerGisle Vanem <gvanem@broadpark.no>
Tue, 6 Nov 2007 16:20:54 +0000 (16:20 +0000)
lib/strtoofft.h

index 7ebe4f050546f7f9617e51b928afecd1530e9414..b53d1cb5216f5cbc8d2a73101dd231eb31ce7f62 100644 (file)
@@ -45,6 +45,7 @@
 
 /* For MSVC7 we can use _strtoi64() which seems to be a strtoll() clone */
 #if defined(_MSC_VER) && (_MSC_VER >= 1300)
+_CRTIMP __int64 __cdecl _strtoi64(const char *, char **, int);  /* in <crt/stdlib.h> */
 #define curlx_strtoofft _strtoi64
 #else /* MSVC7 or later */
 curl_off_t curlx_strtoll(const char *nptr, char **endptr, int base);