diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-07-22 08:23:16 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-07-22 08:23:16 +0000 |
commit | d0bd644eef396066a9ea0a9594176df9049028b1 (patch) | |
tree | feac7c4dbdd8ecbb577207e64c2602918aa9b37c /include | |
parent | 071c95128e2a43be1431c3c38202a1d54d97644a (diff) |
Don't depend on the TIME_WITH_SYS_TIME define. win32 doesn't have sys/time.h
and I don't think we need it.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index ee6a2d70d..4cde1aed5 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -48,18 +48,14 @@ #define LIBCURL_VERSION_NUM 0x070a06 #include <stdio.h> -/* The include stuff here is mainly for time_t! */ + +/* The include stuff here below is mainly for time_t! */ #ifdef vms # include <types.h> # include <time.h> #else # include <sys/types.h> -# ifdef TIME_WITH_SYS_TIME -# include <sys/time.h> -# include <time.h> -# else -# include <sys/time.h> -# endif +# include <time.h> #endif /* defined (vms) */ #ifndef TRUE |