Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
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
);
}