statfs.h 297 字节
Newer Older
R
Rich Felker 已提交
1 2 3
#ifndef	_SYS_STATFS_H
#define	_SYS_STATFS_H

4 5 6 7
#ifdef __cplusplus
extern "C" {
#endif

R
Rich Felker 已提交
8 9
#include <sys/statvfs.h>

10
typedef struct {
11
	int __val[2];
12 13 14 15 16 17
} fsid_t;

#include <bits/statfs.h>

int statfs (const char *, struct statfs *);
int fstatfs (int, struct statfs *);
R
Rich Felker 已提交
18

19 20 21 22
#ifdef __cplusplus
}
#endif

R
Rich Felker 已提交
23
#endif