fix constraint violation in ftw
[musl] / src / linux / epoll_ctl.c
1 #include <sys/epoll.h>
2 #include "syscall.h"
3
4 int epoll_ctl(int fd, int op, int fd2, struct epoll_event *ev)
5 {
6         return syscall(SYS_epoll_ctl, fd, op, fd2, ev);
7 }