diff options
Diffstat (limited to 'include/compat/sys/ioctl.h')
-rw-r--r-- | include/compat/sys/ioctl.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/compat/sys/ioctl.h b/include/compat/sys/ioctl.h new file mode 100644 index 0000000..a255506 --- /dev/null +++ b/include/compat/sys/ioctl.h | |||
@@ -0,0 +1,11 @@ | |||
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 | ||