1
0
mirror of https://frontier.innolan.net/rainlance/c-ares.git synced 2025-12-09 13:46:40 +00:00

Make sure sys/socket.h is included before netinet/in.h (required by

OpenWatcom C)
This commit is contained in:
Dan Fandrich
2008-11-29 00:26:07 +00:00
parent 7bd83c2e33
commit b4371466d4
6 changed files with 16 additions and 1 deletions

View File

@ -17,6 +17,9 @@
#include "setup.h"
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif