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