Hash : cccdd689 Author : Date : 2014-11-19T07:43:07
add minimal winsock->BSD networking header shims also add license header to existing shims
Download
1 2 3 4 5 6 7 8 9 10 11
/* * Public domain * sys/ioctl.h compatibility shim */ #ifndef _WIN32 #include_next <sys/ioctl.h> #else #include <win32netcompat.h> #define ioctl(fd, type, arg) ioctlsocket(fd, type, arg) #endif