diff options
Diffstat (limited to 'io/sys/statvfs.h')
-rw-r--r-- | io/sys/statvfs.h | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/io/sys/statvfs.h b/io/sys/statvfs.h index 568e2649bc..41cb379229 100644 --- a/io/sys/statvfs.h +++ b/io/sys/statvfs.h @@ -24,25 +24,8 @@ /* Get the system-specific definition of `struct statfs'. */ #include <bits/statvfs.h> -#ifndef __USE_FILE_OFFSET64 -# ifndef __fsblkcnt_t_defined -typedef __fsblkcnt_t fsblkcnt_t; /* Type to count file system blocks. */ -# define __fsblkcnt_t_defined -# endif -# ifndef __fsfilcnt_t_defined -typedef __fsfilcnt_t fsfilcnt_t; /* Type to count file system inodes. */ -# define __fsfilcnt_t_defined -# endif -#else -# ifndef __fsblkcnt_t_defined -typedef __fsblkcnt64_t fsblkcnt_t; /* Type to count file system blocks. */ -# define __fsblkcnt_t_defined -# endif -# ifndef __fsfilcnt_t_defined -typedef __fsfilcnt64_t fsfilcnt_t; /* Type to count file system inodes. */ -# define __fsfilcnt_t_defined -# endif -#endif +#include <bits/types/fsblkcnt_t.h> +#include <bits/types/fsfilcnt_t.h> __BEGIN_DECLS |