Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
linux
/
syncfs.c
blob: e1ea9009fc0b2c85b9449e081d423865400395d9 [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<unistd.h>
#include
"syscall.h"
int
syncfs
(
int
fd
)
{
return
syscall
(
SYS_syncfs
,
fd
);
}