blob: 5baa8d25b4519b0267756742c985fad85aee4072 [file] [log] [blame]
/*
* ppoll.c
*/
#include <sys/poll.h>
#ifndef __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