remove another invalid skip of locking in ungetwc
[oweals/musl.git] / src / unistd / fsync.c
index dc4727cc1d17cfccbc8793d6f140839462ca24dd..7a1c80b5de0d801d853163fed58f4372b4771f43 100644 (file)
@@ -3,5 +3,5 @@
 
 int fsync(int fd)
 {
-       return syscall(SYS_fsync, fd);
+       return syscall_cp(SYS_fsync, fd);
 }