blob: da3e999b5d82a332ba034615682c92dc59c8bcd8 [file] [log] [blame]
#include <sys/epoll.h>
#include "syscall.h"
int epoll_ctl(int fd, int op, int fd2, struct epoll_event *ev)
{
return syscall(SYS_epoll_ctl, fd, op, fd2, ev);
}