diff options
author | Christopher Faylor <me@cgf.cx> | 2006-04-05 16:53:12 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2006-04-05 16:53:12 +0000 |
commit | f2e6c508699f87c2bf8bbf65efe645e45120c8e9 (patch) | |
tree | 69589f010d08437fcbe6c82ef53f3f60d62d83d2 /winsup/cygwin/fhandler_socket.cc | |
parent | 0ce97eb453a1e89b6df41b25fac900e60d6c2903 (diff) | |
download | cygnal-f2e6c508699f87c2bf8bbf65efe645e45120c8e9.tar.gz cygnal-f2e6c508699f87c2bf8bbf65efe645e45120c8e9.tar.bz2 cygnal-f2e6c508699f87c2bf8bbf65efe645e45120c8e9.zip |
* fhandler_socket.cc: Move iptypes.h include after winsock2 since it now relies
on it.
* net.cc: Ditto.
Diffstat (limited to 'winsup/cygwin/fhandler_socket.cc')
-rw-r--r-- | winsup/cygwin/fhandler_socket.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_socket.cc b/winsup/cygwin/fhandler_socket.cc index 7d666620f..01e9870b6 100644 --- a/winsup/cygwin/fhandler_socket.cc +++ b/winsup/cygwin/fhandler_socket.cc @@ -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" |