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