Sign in
mojo
/
mojo
/
17e3b04429ce6ad836128e1ceffefd85493ec779
/
.
/
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
);
}