summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/sys/vfs.h
blob: e4740a225c4c3bdecfc1395a06d0d5b4e8a2e722 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _SYS_VFS_H
#define _SYS_VFS_H

#include <sys/cdefs.h>
#include <sys/types.h>
#include <linux/vfs.h>

int statfs(const char *path, struct statfs *buf) __THROW;
int fstatfs(int fd, struct statfs *buf) __THROW;

#endif