mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-11-26 18:18:23 -05:00
12 lines
199 B
C
Executable File
12 lines
199 B
C
Executable File
/*
|
|
* 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
|