commit | a613de2a22e648c7b0b3a9e97ea74dcef640f24b | [log] [tgz] |
---|---|---|
author | Daniel Marmier <d.marmier@bluewin.ch> | Tue Sep 30 00:33:47 2003 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue Sep 30 00:33:47 2003 +0000 |
tree | e153e1189c7bbc89173bfdab04b418f3698f7b62 | |
parent | bd554e63fcf92ab18c4407e475f1a42dfa64134c [diff] [blame] |
Use #ifdef instead of #if for all feature tests. Check that _MSC_VER is defined before using it.
diff --git a/scheduler/pthread.c b/scheduler/pthread.c index 81c0c0a..72126c0 100644 --- a/scheduler/pthread.c +++ b/scheduler/pthread.c
@@ -39,7 +39,7 @@ #endif #include <string.h> #include <sys/types.h> -#if HAVE_SYS_SOCKET_H +#ifdef HAVE_SYS_SOCKET_H # include <sys/socket.h> #endif #ifdef HAVE_SYS_MMAN_H