* dirent/dirent.h: Only define ino64_t if not already done.
	* posix/sys/types.h: Likewise.
This commit is contained in:
Ulrich Drepper 1999-08-18 19:12:32 +00:00
parent 70b2845f71
commit 8353b5f6fd
3 changed files with 7 additions and 2 deletions

View File

@ -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.

View 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

View 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