blob: 8a2e423511a2423d8f331bc98c2e0c9ca72c0173 (
plain) (
tree)
|
|
#include <sys/statvfs.h>
#include "syscall.h"
#include "libc.h"
int fstatvfs(int fd, struct statvfs *buf)
{
return syscall(SYS_fstatfs, fd, buf);
}
weak_alias(fstatvfs, fstatfs);
LFS64(fstatvfs);
LFS64(fstatfs);
|