diff options
author | Patrick Monnerat <Patrick.Monnerat@datasphere.ch> | 2007-08-07 12:44:38 +0000 |
---|---|---|
committer | Patrick Monnerat <Patrick.Monnerat@datasphere.ch> | 2007-08-07 12:44:38 +0000 |
commit | ad9cb40b6f0fc79a1fddd9fa6aa12bf1dd31092b (patch) | |
tree | 2e360e401f7df17ab9b5b0003550de4d3d54e364 /lib/strtoofft.h | |
parent | 2e60ca382dbe99bd294641dabf7e84a349b080c8 (diff) | |
download | curl-ad9cb40b6f0fc79a1fddd9fa6aa12bf1dd31092b.tar.gz |
Some #if --> #ifdef
undef standard *printf before (re)defining them
Diffstat (limited to 'lib/strtoofft.h')
-rw-r--r-- | lib/strtoofft.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strtoofft.h b/lib/strtoofft.h index e27b43261..7ebe4f050 100644 --- a/lib/strtoofft.h +++ b/lib/strtoofft.h @@ -39,7 +39,7 @@ * 'strtoofft' such that it can be used to work with curl_off_t's regardless. */ #if (SIZEOF_CURL_OFF_T > 4) && (SIZEOF_LONG < 8) -#if HAVE_STRTOLL +#ifdef HAVE_STRTOLL #define curlx_strtoofft strtoll #else /* HAVE_STRTOLL */ |