summaryrefslogtreecommitdiff
path: root/src/stat/fstatvfs.c
blob: 83bd748688f5657f67306c5cb930c665f8d34140 (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 fstatvfs(int fd, struct statvfs *buf)
{
	return syscall2(__NR_fstatfs64, fd, (long)buf);
}

weak_alias(fstatvfs, fstatfs);

LFS64(fstatvfs);
LFS64(fstatfs);