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

#include <sys/statvfs.h>

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

#include <bits/statfs.h>

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

#endif