summaryrefslogtreecommitdiff
path: root/include/sys/statfs.h
blob: 05c9b13049fd440992b94eca851fa12a99977c44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef	_SYS_STATFS_H
#define	_SYS_STATFS_H

#include <sys/statvfs.h>

typedef struct {
	int __val[2];
} fsid_t;

#include <bits/statfs.h>

int statfs (const char *, struct statfs *);
int fstatfs (int, struct statfs *);

#endif