aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-01-18 13:04:48 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-01-18 13:04:48 +0000
commit49f7fa82b95e5f6fe816f842d41af11359dd7342 (patch)
tree4a21d2ebe834fc0a210476afa8bb94eaf21f3877 /include
parente4cd4cf3f30a49cbc0b789afa03b639aa1796eba (diff)
#if [undefined] => #ifdef [undefined]
Diffstat (limited to 'include')
-rw-r--r--include/curl/curl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h
index e05db85c4..2e948d8a8 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -30,11 +30,11 @@
# include <time.h>
#else
# include <sys/types.h>
-# if TIME_WITH_SYS_TIME
+# ifdef TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
# else
-# if HAVE_SYS_TIME_H
+# ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>