Sign in
mojo
/
mojo-tools
/
862d13b6f591fb83034e80ed5a8c59fb9d0b7b56
/
.
/
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
);
}