Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
f389c4984a0fee80c5322e4d1ec3aa207e9b5c01
/
.
/
src
/
unistd
/
fsync.c
blob: dc4727cc1d17cfccbc8793d6f140839462ca24dd [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
fsync
(
int
fd
)
{
return
syscall
(
SYS_fsync
,
fd
);
}