diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/fstatfs64.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/fstatfs64.c | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/sysdeps/unix/sysv/linux/fstatfs64.c b/sysdeps/unix/sysv/linux/fstatfs64.c index a95fe187ca..42b225778b 100644 --- a/sysdeps/unix/sysv/linux/fstatfs64.c +++ b/sysdeps/unix/sysv/linux/fstatfs64.c @@ -16,20 +16,23 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ +#include <errno.h> +#include <string.h> +#include <stddef.h> +#include <sysdep.h> +#include <kernel_stat.h> + /* Hide the prototypes for __fstatfs and fstatfs so that GCC will not complain about the different function signatures if they are aliased to __fstat64. If STATFS_IS_STATFS64 is not zero then the statfs and statfs64 structures have an identical layout but different type names. */ -#define __fstatfs __fstatfs_disable -#define fstatfs fstatfs_disable - -#include <errno.h> -#include <string.h> +#if STATFS_IS_STATFS64 +# define __fstatfs __fstatfs_disable +# define fstatfs fstatfs_disable +#endif #include <sys/statfs.h> -#include <kernel_stat.h> -#include <stddef.h> -#include <sysdep.h> + #include <kernel-features.h> /* Defined in statfs64.c. */ |