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

#include <sys/statvfs.h>

6
typedef struct {
7
	int __val[2];
8 9 10 11 12 13
} fsid_t;

#include <bits/statfs.h>

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

#endif