blob: a4d7406c101eeb128fb1f402565d8658b55603a7 [file] [log] [blame]
/*
* ppoll.c
*/
#include <sys/poll.h>
#include <sys/syscall.h>
#ifdef __NR_ppoll
__extern int __ppoll(struct pollfd *, nfds_t, struct timespec *,
const sigset_t *, size_t);
int ppoll(struct pollfd *ufds, nfds_t nfds, struct timespec *timeout,
const sigset_t *sigmask)
{
return __ppoll(ufds, nfds, timeout, sigmask, sizeof *sigmask);
}
#endif