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