blob: a5ab9d5efb1bd9c01cf3f4d7867a8f4d8d49114f (
plain)
1
2
3
4
5
6
7
8
9
|
#include <poll.h>
#include <syscall.h>
int ppoll(struct pollfd fds[], nfds_t nfds,
const struct timespec *restrict timeout,
const sigset_t *restrict sigmask)
{
return syscall(ppoll, fds, nfds, timeout, sigmask, 8);
}
|