blob: 4601b9b375ad748c4bdd001a584a9dafc3b255b5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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);
}
|