2011-02-12 05:22:29 +00:00
|
|
|
#ifndef _SYS_STATFS_H
|
|
|
|
#define _SYS_STATFS_H
|
|
|
|
|
2011-11-11 01:40:06 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#include <sys/statvfs.h>
|
|
|
|
|
2011-09-20 03:35:48 +00:00
|
|
|
typedef struct {
|
2011-09-20 15:16:27 +00:00
|
|
|
int __val[2];
|
2011-09-20 03:35:48 +00:00
|
|
|
} fsid_t;
|
|
|
|
|
|
|
|
#include <bits/statfs.h>
|
|
|
|
|
|
|
|
int statfs (const char *, struct statfs *);
|
|
|
|
int fstatfs (int, struct statfs *);
|
2011-02-12 05:22:29 +00:00
|
|
|
|
2011-11-11 01:40:06 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#endif
|