warnless: header inclusion fix

This commit is contained in:
Yang Tse 2011-05-27 06:56:56 +02:00
parent f461c6e61d
commit 7dd449d843

View File

@ -22,6 +22,20 @@
#include "setup.h"
#if defined(__INTEL_COMPILER) && defined(__unix__)
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_ARPA_INET_H
# include <arpa/inet.h>
#endif
#endif /* __INTEL_COMPILER && __unix__ */
#define BUILDING_WARNLESS_C 1
#include "warnless.h"