From 23cb86d15a861b4a8f2c182e5eaba25391bef537 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 23 Feb 2000 05:41:49 +0000 Subject: [PATCH] Allow ino64_t be defined elsewhere. --- posix/sys/types.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/posix/sys/types.h b/posix/sys/types.h index 8ba320006b8..2aec0f698df 100644 --- a/posix/sys/types.h +++ b/posix/sys/types.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991,92,94,95,96,97,98,99 Free Software Foundation, Inc. +/* Copyright (C) 1991,92,94,95,96,97,98,99, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -49,8 +49,9 @@ typedef __ino64_t ino_t; # endif # define ino_t ino_t #endif -#ifdef __USE_LARGEFILE64 +#if defined __USE_LARGEFILE64 && !defined ino64_t typedef __ino64_t ino64_t; +# define ino64_t ino64_t #endif #ifndef dev_t -- 2.47.2