diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-02-25 10:12:04 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-02-25 10:12:04 +0000 |
commit | b32a39f44f45438993d6b25282913abbeeaaa8af (patch) | |
tree | 1c477e4478014e97cb11bf141b93aa482b59096b /lib | |
parent | d86f9611b334f47b995d332f5900d0681fff4c3e (diff) |
oops, #if not #ifdef
Diffstat (limited to 'lib')
-rw-r--r-- | lib/multi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/multi.h b/lib/multi.h index d178d5340..d92f767cb 100644 --- a/lib/multi.h +++ b/lib/multi.h @@ -50,7 +50,7 @@ #ifdef HAVE_SYS_SOCKET_H #include <sys/socket.h> #endif -#ifdef defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__) +#if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__) #include <winsock.h> #endif |