blob: 60c79a16087d8b832d35a31f9b7a61ac81b5e7e9 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <poll.h> // for nfds_t, poll, pollfd
#include <syscall.h> // for __syscall_3, syscall
int poll(struct pollfd fds[], nfds_t nfds, int timeout)
{
return syscall(poll, fds, nfds, timeout);
}
|