OSDN Git Service

fix prototypes/signature for setgroups, etc.
[android-x86/external-musl-libc.git] / src / linux / epoll_wait.c
1 #include <sys/epoll.h>
2 #include "syscall.h"
3
4 int epoll_wait(int fd, struct epoll_event *ev, int cnt, int to)
5 {
6         return syscall(SYS_epoll_wait, fd, ev, cnt, to);
7 }