12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #ifndef _SYS_STATFS_H
- #define _SYS_STATFS_H 1
- #include <features.h>
- #include <bits/statfs.h>
- __BEGIN_DECLS
- #ifndef __USE_FILE_OFFSET64
- extern int statfs (__const char *__file, struct statfs *__buf) __THROW;
- #else
- # ifdef __REDIRECT
- extern int __REDIRECT (statfs,
- (__const char *__file, struct statfs *__buf) __THROW,
- statfs64);
- # else
- # define statfs statfs64
- # endif
- #endif
- #ifdef __USE_LARGEFILE64
- extern int statfs64 (__const char *__file, struct statfs64 *__buf) __THROW;
- #endif
- #ifndef __USE_FILE_OFFSET64
- extern int fstatfs (int __fildes, struct statfs *__buf) __THROW;
- #else
- # ifdef __REDIRECT
- extern int __REDIRECT (fstatfs, (int __fildes, struct statfs *__buf) __THROW,
- fstatfs64);
- # else
- # define fstatfs fstatfs64
- # endif
- #endif
- #ifdef __USE_LARGEFILE64
- extern int fstatfs64 (int __fildes, struct statfs64 *__buf) __THROW;
- #endif
- __END_DECLS
- #endif
|