global cleanup to use the new syscall interface
[musl] / src / unistd / fsync.c
index 7cfedc9..5991c66 100644 (file)
@@ -3,6 +3,6 @@
 
 int fsync(int fd)
 {
-       //return syscall1(__NR_fsync, fd);
+       //return syscall(SYS_fsync, fd);
        return 0;
 }