From: Daniel Stenberg Date: Tue, 22 Jul 2003 08:23:16 +0000 (+0000) Subject: Don't depend on the TIME_WITH_SYS_TIME define. win32 doesn't have sys/time.h X-Git-Tag: curl-7_10_6~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d0bd644eef396066a9ea0a9594176df9049028b1;p=curl 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. --- 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 -/* The include stuff here is mainly for time_t! */ + +/* The include stuff here below is mainly for time_t! */ #ifdef vms # include # include #else # include -# ifdef TIME_WITH_SYS_TIME -# include -# include -# else -# include -# endif +# include #endif /* defined (vms) */ #ifndef TRUE