380b5dad7838a0c91a838ce015a54d0c70ce41a8
[musl] / src / linux / epoll_create1.c
1 #include <sys/epoll.h>
2 #include "syscall.h"
3
4 int epoll_create1(int flags)
5 {
6         return syscall(SYS_epoll_create1, flags);
7 }