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/net.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/net.cc')
-rw-r--r-- | winsup/cygwin/net.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/net.cc b/winsup/cygwin/net.cc index baf0c0c95..edc554a68 100644 --- a/winsup/cygwin/net.cc +++ b/winsup/cygwin/net.cc @@ -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" |