diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2006-08-29 18:45:55 +0000 |
---|---|---|
committer | Gisle Vanem <gvanem@broadpark.no> | 2006-08-29 18:45:55 +0000 |
commit | 59cf6fd4f058917839a407f5a206f5f1c1a004a6 (patch) | |
tree | cc4800cc4cd220351c1475b9f3f6acaff6549bee /lib/easy.c | |
parent | 6de9732a8869f8a7b07ad9b393984a838c1dc566 (diff) | |
download | curl-59cf6fd4f058917839a407f5a206f5f1c1a004a6.tar.gz |
Watcom lacks <sys/time.h>.
Diffstat (limited to 'lib/easy.c')
-rw-r--r-- | lib/easy.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/easy.c b/lib/easy.c index 827463ad8..5a4138361 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -48,7 +48,9 @@ #include <sys/socket.h> #endif #include <netinet/in.h> +#ifndef __WATCOMC__ #include <sys/time.h> +#endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif |