mirror of
https://github.com/fluencelabs/musl
synced 2025-06-10 13:31:37 +00:00
8 lines
163 B
C
8 lines
163 B
C
#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);
|
|
}
|