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