blob: 13700b5246576a0c89ac3fc53ed97ca5c18064f5 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <stddef.h>
typedef struct SYS_POLL_PARAMS {
struct pollfd *fds;
size_t nfds;
int timeout;
} __attribute__((packed)) SYS_POLL_PARAMS;
int syscall_poll(SYS_POLL_PARAMS *args);
|