blob: 1018591b9c3a14eb39409be9a82662b33dc53d55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _SYS_VFS_H
#define _SYS_VFS_H
#include <features.h>
#include <linux/vfs.h>
__BEGIN_DECLS
extern int __statfs __P ((__const char *__path, struct statfs *__buf));
extern int statfs __P ((__const char *__path, struct statfs *__buf));
extern int __fstatfs __P ((int __fildes, struct statfs *__buf));
extern int fstatfs __P ((int __fildes, struct statfs *__buf));
__END_DECLS
#endif /*_SYS_VFS_H */
|