Files
musl/src/linux/epoll_wait.c

8 lines
163 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <sys/epoll.h>
#include "syscall.h"
int epoll_wait(int fd, struct epoll_event *ev, int cnt, int to)
{
return syscall(SYS_epoll_wait, fd, ev, cnt, to);
2011-02-12 00:22:29 -05:00
}