diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-01-18 15:13:23 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-01-18 15:13:23 +0000 |
commit | 0406b1facf8fa0190806d76bddc0578793f01c39 (patch) | |
tree | be7ce20ffd68f1fa106cc5b7f1145f18893280db | |
parent | 65dbee01e5fcdd8dd6b9ea039c76e3e04b815e5e (diff) |
skip sys/socket.h on windows CE
-rw-r--r-- | include/curl/multi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/curl/multi.h b/include/curl/multi.h index 1e6fc3cc5..a9b1c0ea8 100644 --- a/include/curl/multi.h +++ b/include/curl/multi.h @@ -67,7 +67,9 @@ #include <sys/select.h> #endif +#ifndef _WIN32_WCE #include <sys/socket.h> +#endif #include <sys/time.h> #include <sys/types.h> #endif |