Sign in
mojo
/
mojo-tools
/
a02505467f01880befaf0b32a25b97975b47a726
/
.
/
fusl
/
src
/
unistd
/
fdatasync.c
blob: 429bd436cd8c7328e7e262a677b3e0c977d5255c [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
fdatasync
(
int
fd
)
{
return
syscall_cp
(
SYS_fdatasync
,
fd
);
}