mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-11-26 18:28:22 -05:00
18 lines
192 B
C
Executable File
18 lines
192 B
C
Executable File
/*
|
|
* Public domain
|
|
* sys/select.h compatibility shim
|
|
*/
|
|
|
|
#ifndef _WIN32
|
|
#include_next <sys/uio.h>
|
|
#else
|
|
|
|
#include <sys/types.h>
|
|
|
|
struct iovec {
|
|
void *iov_base;
|
|
size_t iov_len;
|
|
};
|
|
|
|
#endif
|