1 /*
2  * Public domain
3  * sys/ioctl.h compatibility shim
4  */
5 
6 #ifndef _WIN32
7 #include_next <sys/ioctl.h>
8 #else
9 #include <win32netcompat.h>
10 #define ioctl(fd, type, arg) ioctlsocket(fd, type, arg)
11 #endif
12