aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-01-23 07:41:05 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-01-23 07:41:05 +0000
commitd8ee927be2883dcb3ebca3b75a9955c789f9e52e (patch)
tree0dff9ea5986fb779f0c4802fd6d3682b757e0f15 /src
parent3efb90dd755af19eda4b4004e3fadbd3a9c6b1e7 (diff)
define SIZEOF_CURL_OFF_T if not already defined
Diffstat (limited to 'src')
-rw-r--r--src/setup.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/setup.h b/src/setup.h
index 7e8428d70..340a46a4b 100644
--- a/src/setup.h
+++ b/src/setup.h
@@ -112,4 +112,8 @@ int fileno( FILE *stream);
#define typedef_bool
#endif
+#ifndef SIZEOF_CURL_OFF_T
+#define SIZEOF_CURL_OFF_T sizeof(curl_off_t)
+#endif
+
#endif /* __SETUP_H */