mirror of
https://github.com/fluencelabs/musl
synced 2025-05-31 08:31:39 +00:00
8 lines
171 B
C
8 lines
171 B
C
#include <sys/epoll.h>
|
|
#include "syscall.h"
|
|
|
|
int epoll_wait(int fd, struct epoll_event *ev, int cnt, int to)
|
|
{
|
|
return syscall4(__NR_epoll_wait, fd, (long)ev, cnt, to);
|
|
}
|