Added prototype for _strtoi64().
This commit is contained in:
parent
caf880be18
commit
66e4d391d3
@ -45,6 +45,7 @@
|
|||||||
|
|
||||||
/* For MSVC7 we can use _strtoi64() which seems to be a strtoll() clone */
|
/* For MSVC7 we can use _strtoi64() which seems to be a strtoll() clone */
|
||||||
#if defined(_MSC_VER) && (_MSC_VER >= 1300)
|
#if defined(_MSC_VER) && (_MSC_VER >= 1300)
|
||||||
|
_CRTIMP __int64 __cdecl _strtoi64(const char *, char **, int); /* in <crt/stdlib.h> */
|
||||||
#define curlx_strtoofft _strtoi64
|
#define curlx_strtoofft _strtoi64
|
||||||
#else /* MSVC7 or later */
|
#else /* MSVC7 or later */
|
||||||
curl_off_t curlx_strtoll(const char *nptr, char **endptr, int base);
|
curl_off_t curlx_strtoll(const char *nptr, char **endptr, int base);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user