Simplified #ifdef on WIN32; the statement

" !defined(__GNUC__) || defined(__MINGW32__)" implies
CygWin.
This commit is contained in:
Gisle Vanem
2006-09-03 13:52:07 +00:00
parent 6728bda5c5
commit 4f4277d9c7
9 changed files with 11 additions and 11 deletions

View File

@@ -34,7 +34,7 @@
#include <unistd.h>
#endif
#if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__)
#if defined(WIN32) && !defined(__CYGWIN__)
#else /* probably some kind of unix */
#ifdef HAVE_SYS_SOCKET_H