global cleanup to use the new syscall interface
[musl] / src / stat / statvfs.c
1 #include <sys/statvfs.h>
2 #include "syscall.h"
3 #include "libc.h"
4
5 int statvfs(const char *path, struct statvfs *buf)
6 {
7         return syscall(SYS_statfs, path, buf);
8 }
9
10 weak_alias(statvfs, statfs);
11
12 LFS64(statvfs);
13 LFS64(statfs);