]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 18 Aug 1999 19:12:32 +0000 (19:12 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 18 Aug 1999 19:12:32 +0000 (19:12 +0000)
* dirent/dirent.h: Only define ino64_t if not already done.
* posix/sys/types.h: Likewise.

ChangeLog
dirent/dirent.h
posix/sys/types.h

index 6418ae1b01fba24fdb55be3f771f6692edd3cd43..64214d513d0e25d3bba0134aa8763b42f4b590b0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 1999-08-18  Ulrich Drepper  <drepper@cygnus.com>
 
+       * dirent/dirent.h: Only define ino64_t if not already done.
+       * posix/sys/types.h: Likewise.
+
        * ctype/ctype.h: Avoid useless #endif #if pairs.
 
        * dirent/dirent.h: Define ino_t and ino64_t if not done already.
index 7154b52c853bb657bfe70cca88406800e9cc6ebe..f64c7fcfa5f5971fb1c6c57e5ca347eaeefa759e 100644 (file)
@@ -38,8 +38,9 @@ typedef __ino64_t ino_t;
 #  endif
 #  define __ino_t_defined
 # endif
-# ifdef __USE_LARGEFILE64
+# if defined __USE_LARGEFILE64 && !defined __ino64_t_defined
 typedef __ino64_t ino64_t;
+#  define __ino64_t_defined
 # endif
 #endif
 
index 37c1cb16c839317ce6ff42d8a6a09d854872eaa3..a01cd255077496a32a12d1baa7b73643b0c885ab 100644 (file)
@@ -49,8 +49,9 @@ typedef __ino64_t ino_t;
 # endif
 # define __ino_t_defined
 #endif
-#ifdef __USE_LARGEFILE64
+#if defined __USE_LARGEFILE64 && !defined __ino64_t_defined
 typedef __ino64_t ino64_t;
+# define __ino64_t_defined
 #endif
 
 #ifndef __dev_t_defined