mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-11-26 18:28:22 -05:00
11 lines
145 B
C
Executable File
11 lines
145 B
C
Executable File
/*
|
|
* Public domain
|
|
* sys/select.h compatibility shim
|
|
*/
|
|
|
|
#ifndef _WIN32
|
|
#include_next <sys/select.h>
|
|
#else
|
|
#include <win32netcompat.h>
|
|
#endif
|