This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
サインイン
hongwenjun
/
musl
同期ミラー
https://git.musl-libc.org/git/musl
ウォッチ
1
スター
0
フォーク
0
ファイル
課題
0
Wiki
ソースを参照
fix dummied-out fdatasync
Rich Felker
12 年 前
親
914949d321
コミット
ca1773d864
1 ファイル変更
、
1 行追加
、
1 行削除
分割表示
差分情報を表示
1
1
src/unistd/fdatasync.c
+ 1
- 1
src/unistd/fdatasync.c
ファイルの表示
@@ -3,5 +3,5 @@
int fdatasync(int fd)
{
- return
0
;
+ return
syscall(SYS_fdatasync, fd)
;
}