diff options
| author | Gisle Vanem <gvanem@broadpark.no> | 2008-08-13 08:32:22 +0000 |
|---|---|---|
| committer | Gisle Vanem <gvanem@broadpark.no> | 2008-08-13 08:32:22 +0000 |
| commit | 9a9041f1ce9563e95feec88749933398fe541f7b (patch) | |
| tree | 71ebf49c97c248bfe329937ab867676ed3a8e82b | |
| parent | 0aa704935b828ea4f682ae26a87a1628a41b6624 (diff) | |
Watcom doesn't have <sys/time.h>.
| -rw-r--r-- | include/curl/curl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 0aaad88fa..b7555e0be 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -77,7 +77,7 @@ #ifndef _WIN32_WCE #include <sys/socket.h> #endif -#if !defined(WIN32) || !defined(__WATCOMC__) +#if !defined(WIN32) && !defined(__WATCOMC__) #include <sys/time.h> #endif #include <sys/types.h> |
