overhaul pthread cancellation
[musl] / src / select / poll.c
1 #include <poll.h>
2 #include "syscall.h"
3 #include "libc.h"
4
5 int poll(struct pollfd *fds, nfds_t n, int timeout)
6 {
7         return syscall_cp(SYS_poll, fds, n, timeout);
8 }