summaryrefslogtreecommitdiff
path: root/lib/strtoofft.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-08-12 15:54:06 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-08-17 10:26:53 +0200
commit80d9e35598d5e6029dc4c90bf3da885682936d2a (patch)
tree952d270ac713d7b9373d6020976a9dd9c0dbc421 /lib/strtoofft.c
parentc95eff4a11575a5973fad20619ff7ca3989316db (diff)
downloadcurl-80d9e35598d5e6029dc4c90bf3da885682936d2a.tar.gz
system.h: remove all CURL_SIZEOF_* defines
... as they're not used externally and internally we check for the sizes already in configure etc. Closes #1767
Diffstat (limited to 'lib/strtoofft.c')
-rw-r--r--lib/strtoofft.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strtoofft.c b/lib/strtoofft.c
index f057bb1d6..5e800b4e3 100644
--- a/lib/strtoofft.c
+++ b/lib/strtoofft.c
@@ -33,7 +33,7 @@
* https://www.opengroup.org/onlinepubs/009695399/functions/strtoimax.html
*/
-#if (CURL_SIZEOF_CURL_OFF_T > CURL_SIZEOF_LONG)
+#if (SIZEOF_CURL_OFF_T > SIZEOF_LONG)
# ifdef HAVE_STRTOLL
# define strtooff strtoll
# else