blob: 1725299785316ad1024f8a507aa5c5886b5f53b2 (
plain) (
tree)
|
|
#include <sys/statvfs.h>
#include "syscall.h"
#include "libc.h"
int statvfs(const char *path, struct statvfs *buf)
{
return syscall(SYS_statfs, path, buf);
}
weak_alias(statvfs, statfs);
LFS64(statvfs);
LFS64(statfs);
|