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
|