Sign in
mojo
/
mojo-tools
/
751f4d3c32cbd11f0bfd44c5facf6c62173310bf
/
.
/
fusl
/
src
/
unistd
/
fsync.c
blob: 7a1c80b5de0d801d853163fed58f4372b4771f43 [
file
]
#include
<unistd.h>
#include
"syscall.h"
int
fsync
(
int
fd
)
{
return
syscall_cp
(
SYS_fsync
,
fd
);
}