Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-03-20 22:50:28 +0300
committerChristopher Faylor <me@cgf.cx>2001-03-20 22:50:28 +0300
commita1299ba54b1a4977da361a037d6c3392005cbd25 (patch)
treecf335e7602731349fd19044b5a2fc8079a20c9b3 /winsup/cygwin/dtable.cc
parentd17d6d4286c18626c357d748df6fa9ab66aa2714 (diff)
* dtable.cc: Guard against new winsock.h/winsock2.h warnings when mixing
winsock*.h and sys/types.h. * fhandler_socket.cc: Ditto. * net.cc: Ditto. * select.cc: Ditto. * exceptions.cc: Remove unneeded define.
Diffstat (limited to 'winsup/cygwin/dtable.cc')
-rw-r--r--winsup/cygwin/dtable.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/dtable.cc b/winsup/cygwin/dtable.cc
index f20effcc4..31cdf4ab7 100644
--- a/winsup/cygwin/dtable.cc
+++ b/winsup/cygwin/dtable.cc
@@ -10,7 +10,6 @@ details. */
#define __INSIDE_CYGWIN_NET__
-#define Win32_Winsock
#include "winsup.h"
#include <errno.h>
#include <sys/socket.h>
@@ -20,6 +19,7 @@ details. */
#include <fcntl.h>
#include <sys/cygwin.h>
+#define USE_SYS_TYPES_FD_SET
#include <winsock.h>
#include "sync.h"
#include "sigproc.h"