fixup windows and older linux builds

This commit is contained in:
Brent Cook
2015-09-13 18:57:29 -05:00
parent 8c90be2a29
commit 696ba18c6a
3 changed files with 21 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
/*
* Public domain
* sys/socket.h compatibility shim
*/
#ifndef _WIN32
#include_next <sys/socket.h>
#else
#include <win32netcompat.h>
#endif