aboutsummaryrefslogtreecommitdiff
path: root/lib/strtoofft.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-01-22 14:31:46 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-01-22 14:31:46 +0000
commitad7e26b1401238d50b8bc7e98b6cf7660f03d4e6 (patch)
tree9f69cd36c61e2cd19f4b470e705fd01fabcefed9 /lib/strtoofft.h
parentf39749cee4e06d171f2ed39f31cc4571cd6ed43d (diff)
return curl_off_t instead of long long, to work on more platforms
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 4b6e6b136..cd512b001 100644
--- a/lib/strtoofft.h
+++ b/lib/strtoofft.h
@@ -37,7 +37,7 @@
#if HAVE_STRTOLL
#define strtoofft strtoll
#else
-long long Curl_strtoll(const char *nptr, char **endptr, int base);
+curl_off_t Curl_strtoll(const char *nptr, char **endptr, int base);
#define strtoofft Curl_strtoll
#define NEED_CURL_STRTOLL
#endif