Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
4724d108f68791b819df39242341485dd319eeb6
/
.
/
src
/
unistd
/
fsync.c
blob: 7a1c80b5de0d801d853163fed58f4372b4771f43 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
fsync
(
int
fd
)
{
return
syscall_cp
(
SYS_fsync
,
fd
);
}