caceebaf08c819c2beae94d19416db78541dd3e9
[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         int r;
8         CANCELPT_BEGIN;
9         r = syscall(SYS_poll, fds, n, timeout);
10         CANCELPT_END;
11         return r;
12 }