This website works better with JavaScript
Home
Explore
Help
Sign In
hongwenjun
/
musl
mirror of
https://git.musl-libc.org/git/musl
Watch
1
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
fix dummied-out fdatasync
Rich Felker
12 years ago
parent
914949d321
commit
ca1773d864
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
1
1
src/unistd/fdatasync.c
+ 1
- 1
src/unistd/fdatasync.c
View File
@@ -3,5 +3,5 @@
int fdatasync(int fd)
{
- return
0
;
+ return
syscall(SYS_fdatasync, fd)
;
}