#include "asm/unistd_64.h" // for __NR_poll #include // for nfds_t, poll, pollfd #include // for __syscall_3, syscall int poll(struct pollfd fds[], nfds_t nfds, int timeout) { return syscall(poll, fds, nfds, timeout); }