Add missing #includes for FreeBSD and Solaris.

This commit is contained in:
Gerald Pfeifer 2002-03-19 02:06:25 +00:00 committed by Alexandre Julliard
parent a65ef56101
commit c8764e4de0
1 changed files with 10 additions and 0 deletions

View File

@ -53,8 +53,18 @@
#include <utime.h>
#include <sys/socket.h>
#include <sys/types.h>
#ifdef HAVE_NETINET_IN_SYSTM_H
#include <netinet/in_systm.h>
#endif
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IP_H
#include <netinet/ip.h>
#endif
#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
#include "winerror.h"
#include "windef.h"