global cleanup to use the new syscall interface
[musl] / src / linux / inotify_init1.c
index 5fad094..6472a7b 100644 (file)
@@ -3,5 +3,5 @@
 
 int inotify_init1(int flags)
 {
-       return syscall1(__NR_inotify_init1, flags);
+       return syscall(SYS_inotify_init1, flags);
 }