diff options
author | Yang Tse <yangsita@gmail.com> | 2009-06-01 09:18:15 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-06-01 09:18:15 +0000 |
commit | c0e004ec1c427101f2f90cd264bcab152e016dcc (patch) | |
tree | d78ef8841be473e6e8e5c68af8e58b476e30166c | |
parent | 0a1b7296b9f6e6773f862b9c1f3d1ef05b9a6784 (diff) |
John E. Malmberg's VMS specific clean-up for curl.h
-rw-r--r-- | include/curl/curl.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 78213b308..65b27ba5b 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -48,13 +48,8 @@ #include <limits.h> /* The include stuff here below is mainly for time_t! */ -#ifdef vms -# include <types.h> -# include <time.h> -#else -# include <sys/types.h> -# include <time.h> -#endif /* defined (vms) */ +#include <sys/types.h> +#include <time.h> #if defined(WIN32) && !defined(_WIN32_WCE) && !defined(__GNUC__) && \ !defined(__CYGWIN__) || defined(__MINGW32__) |