1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

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

OpenWatcom C, and condoned by SUS)
This commit is contained in:
Dan Fandrich 2008-12-02 02:58:04 +00:00
parent b062212e55
commit 16a153468d

View File

@ -50,6 +50,7 @@
#if defined(WIN32) && !defined(WATT32)
#include <winsock.h>
#else
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <netdb.h>