mirror of
https://github.com/azahar-emu/ext-libressl-portable
synced 2025-11-07 07:30:06 +01:00
12 lines
199 B
C
12 lines
199 B
C
/*
|
|
* 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
|