summaryrefslogblamecommitdiff
path: root/src/stat/statvfs.c
blob: 517eebda719b5d7e0a2b5627f9cabc827c1a7435 (plain) (tree)
1
2
3
4
5
6
7





                                                  
                                                           





                            
#include <sys/statvfs.h>
#include "syscall.h"
#include "libc.h"

int statvfs(const char *path, struct statvfs *buf)
{
	return syscall(SYS_statfs, path, sizeof *buf, buf);
}

weak_alias(statvfs, statfs);

LFS64(statvfs);
LFS64(statfs);