* fhandler_socket.cc: Move iptypes.h include after winsock2 since it now relies

on it.
* net.cc: Ditto.
This commit is contained in:
Christopher Faylor 2006-04-05 16:53:12 +00:00
parent 0ce97eb453
commit f2e6c50869
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2006-04-05 Christopher Faylor <cgf@timesys.com>
* fhandler_socket.cc: Move iptypes.h include after winsock2 since it
now relies on it.
* net.cc: Ditto.
2006-04-05 Christopher Faylor <cgf@timesys.com>
* dcrt0.cc (dll_crt0_0): Move user_data->{resourcelocks,threadinterface}

View File

@ -17,11 +17,11 @@
#include <sys/un.h>
#include <sys/uio.h>
#include <asm/byteorder.h>
#include <iphlpapi.h>
#include <stdlib.h>
#define USE_SYS_TYPES_FD_SET
#include <winsock2.h>
#include <iphlpapi.h>
#include "cygerrno.h"
#include "security.h"
#include "cygwin/version.h"

View File

@ -17,7 +17,6 @@ details. */
#include <ctype.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <iphlpapi.h>
#include <syslog.h>
#include <stdlib.h>
@ -27,6 +26,7 @@ details. */
#include <netdb.h>
#define USE_SYS_TYPES_FD_SET
#include <winsock2.h>
#include <iphlpapi.h>
#include <assert.h>
#include "cygerrno.h"
#include "security.h"