1 2 3 4 5 6 7
#include <poll.h> #include <syscall.h> int poll(struct pollfd fds[], nfds_t nfds, int timeout) { return syscall(poll, fds, nfds, timeout); }