further use of _Noreturn, for non-plain-C functions
[oweals/musl.git] / src / linux / epoll_ctl.c
index 4214f40782159746f9fe7eb42465e8aec2b8a0b2..da3e999b5d82a332ba034615682c92dc59c8bcd8 100644 (file)
@@ -3,5 +3,5 @@
 
 int epoll_ctl(int fd, int op, int fd2, struct epoll_event *ev)
 {
-       return syscall4(__NR_epoll_ctl, fd, op, fd2, (long)ev);
+       return syscall(SYS_epoll_ctl, fd, op, fd2, ev);
 }