Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
unistd
/
fdatasync.c
blob: 3895ae530c75de20300c2c5c8961c99d30befb1d [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
fdatasync
(
int
fd
)
{
return
syscall_cp
(
SYS_fdatasync
,
fd
);
}