blob: 55a05d528d0c53a603509e92ee7425a133a1963a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <sys/statvfs.h>
#include "syscall.h"
#include "libc.h"
int statvfs(const char *path, struct statvfs *buf)
{
return syscall2(__NR_statfs64, (long)path, (long)buf);
}
weak_alias(statvfs, statfs);
LFS64(statvfs);
LFS64(statfs);
|