diff options
author | Thilo Schulz <arny@ats.s.bawue.de> | 2011-06-06 14:59:54 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-09 22:38:48 +0000 |
commit | 83a9bacbe185ccd6b21e5fd18085b8fdce306cc9 (patch) | |
tree | 1897fad9419b58eae97097391f3c2c39c5026b56 /src/qcommon | |
parent | a73af207d3c20cb8eafe68c3bcad805891f18ddd (diff) |
OpenBSD compile fixes, patch provided by Jonathan Gray (#4994)
Diffstat (limited to 'src/qcommon')
-rw-r--r-- | src/qcommon/net_ip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qcommon/net_ip.c b/src/qcommon/net_ip.c index 682f4689..d7dc8b5f 100644 --- a/src/qcommon/net_ip.c +++ b/src/qcommon/net_ip.c @@ -64,11 +64,11 @@ static qboolean winsockInitialized = qfalse; # define _BSD_SOCKLEN_T_ # endif -# include <arpa/inet.h> +# include <sys/socket.h> # include <errno.h> # include <netdb.h> # include <netinet/in.h> -# include <sys/socket.h> +# include <arpa/inet.h> # include <net/if.h> # include <sys/ioctl.h> # include <sys/types.h> |