Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
7e795ca7edfb2b952abe6a839e84a94420ff8a90
/
.
/
src
/
stat
/
fstatvfs.c
blob: 833e8ec87606d4457db9916255ddfed1cd37c27b [
file
] [
log
] [
blame
]
#include
<sys/statvfs.h>
#include
"syscall.h"
#include
"libc.h"
int
fstatvfs
(
int
fd
,
struct
statvfs
*
buf
)
{
return
syscall
(
SYS_fstatfs
,
fd
,
sizeof
*
buf
,
buf
);
}
weak_alias
(
fstatvfs
,
fstatfs
);
LFS64
(
fstatvfs
);
LFS64
(
fstatfs
);