blob: f314be6ba500d884824654d7b331e592bc90a568 [file] [log] [blame]
/*
* ppoll.c
*/
#include <sys/poll.h>
__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);
}