remove another invalid skip of locking in ungetwc
[oweals/musl.git] / src / unistd / fdatasync.c
index ef7c9a9de2e5d020480f3d135949e4975b743bb5..3895ae530c75de20300c2c5c8961c99d30befb1d 100644 (file)
@@ -3,5 +3,5 @@
 
 int fdatasync(int fd)
 {
-       return 0;
+       return syscall_cp(SYS_fdatasync, fd);
 }