Add missing #includes for non-Linux systems.

This commit is contained in:
Gerald Pfeifer 2003-05-13 23:37:29 +00:00 committed by Alexandre Julliard
parent 7927b41b6c
commit 9512ba5322
2 changed files with 6 additions and 3 deletions

View File

@ -21,6 +21,8 @@
#include "config.h"
#include <stdlib.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <resolv.h>
#include "winbase.h"
#include "iphlpapi.h"

View File

@ -23,15 +23,16 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#if HAVE_NET_IF_H
#include <net/if.h>
#endif
#if HAVE_NETINET_TCP_H
#include <netinet/tcp.h>
#endif
#if HAVE_NETINET_TCP_FSM_H
#include <netinet/tcp_fsm.h>
#endif