initial check-in, version 0.5.0
[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 syscall2(__NR_statfs64, (long)path, (long)buf);
8 }
9
10 weak_alias(statvfs, statfs);
11
12 LFS64(statvfs);
13 LFS64(statfs);