Sign in
cobalt
/
cobalt
/
d2bc3b69d823bbaf46d1c4355b23486a85a6d791
/
.
/
third_party
/
musl
/
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
);
}