Module: wine Branch: master Commit: 507f6710baa1cb2774393bb8cf7b8bfe3e143e10 URL: http://source.winehq.org/git/wine.git/?a=commit;h=507f6710baa1cb2774393bb8cf...
Author: Austin English austinenglish@gmail.com Date: Mon Jan 26 11:37:04 2009 -0600
iphlpapi: Fix includes for NetBSD.
---
dlls/iphlpapi/ipstats.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/iphlpapi/ipstats.c b/dlls/iphlpapi/ipstats.c index 32e24e3..6d3c413 100644 --- a/dlls/iphlpapi/ipstats.c +++ b/dlls/iphlpapi/ipstats.c @@ -43,6 +43,9 @@ #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> #endif +#ifdef HAVE_NETINET_IN_SYSTM_H +#include <netinet/in_systm.h> +#endif #ifdef HAVE_ARPA_INET_H #include <arpa/inet.h> #endif @@ -88,9 +91,6 @@ #ifdef HAVE_NETINET_TCP_VAR_H #include <netinet/tcp_var.h> #endif -#ifdef HAVE_NETINET_IN_SYSTM_H -#include <netinet/in_systm.h> -#endif #ifdef HAVE_NETINET_IP_ICMP_H #include <netinet/ip_icmp.h> #endif