Sign in
cobalt
/
cobalt
/
6c50c1c49c8a70d13dcb47674d70da002e02256c
/
.
/
third_party
/
musl
/
src
/
linux
/
syncfs.c
blob: bc7d301e5178906ea2d7afc0e50e7b93f12255a9 [
file
]
#define
_GNU_SOURCE
#include
<unistd.h>
#include
"syscall.h"
int
syncfs
(
int
fd
)
{
return
syscall
(
SYS_syncfs
,
fd
);
}