mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
1999-06-23 Zack Weinberg <zack@rabi.columbia.edu> * libio/stdio.h: Define stdin, stdout, stderr as macros. * math/complex.h: Don't define CX_LIMITED_RANGE_{ON,OFF,DEFAULT}. These are *pragmas* not macros. * wcsmbs/wchar.h: Fix comment. * grp/grp.h: Use __foo_t_defined convention to typedef things only once. * io/sys/stat.h: Likewise. * libio/stdio.h: Likewise. * posix/unistd.h: Likewise. * posix/sys/types.h: Likewise. * posix/sys/wait.h: Likewise. * pwd/pwd.h: Likewise. * signal/signal.h: Likewise. * sysdeps/generic/stdint.h: Likewise. * sysdeps/gnu/utmpx.h: Likewise. * termios/termios.h: Likewise.
This commit is contained in:
@ -33,54 +33,54 @@
|
||||
|
||||
/* The Single Unix specification says that some more types are
|
||||
available here. */
|
||||
# ifndef dev_t
|
||||
# ifndef __dev_t_defined
|
||||
typedef __dev_t dev_t;
|
||||
# define dev_t dev_t
|
||||
# define __dev_t_defined
|
||||
# endif
|
||||
|
||||
# ifndef gid_t
|
||||
# ifndef __gid_t_defined
|
||||
typedef __gid_t gid_t;
|
||||
# define gid_t gid_t
|
||||
# define __gid_t_defined
|
||||
# endif
|
||||
|
||||
# ifndef ino_t
|
||||
# ifndef __ino_t_defined
|
||||
# ifndef __USE_FILE_OFFSET64
|
||||
typedef __ino_t ino_t;
|
||||
# else
|
||||
typedef __ino64_t ino_t;
|
||||
# endif
|
||||
# define ino_t ino_t
|
||||
# define __ino_t_defined
|
||||
# endif
|
||||
|
||||
# ifndef mode_t
|
||||
# ifndef __mode_t_defined
|
||||
typedef __mode_t mode_t;
|
||||
# define mode_t mode_t
|
||||
# define __mode_t_defined
|
||||
# endif
|
||||
|
||||
# ifndef nlink_t
|
||||
# ifndef __nlink_t_defined
|
||||
typedef __nlink_t nlink_t;
|
||||
# define nlink_t nlink_t
|
||||
# define __nlink_t_defined
|
||||
# endif
|
||||
|
||||
# ifndef off_t
|
||||
# ifndef __off_t_defined
|
||||
# ifndef __USE_FILE_OFFSET64
|
||||
typedef __off_t off_t;
|
||||
# else
|
||||
typedef __off64_t off_t;
|
||||
# endif
|
||||
# define off_t off_t
|
||||
# define __off_t_defined
|
||||
# endif
|
||||
|
||||
# ifndef uid_t
|
||||
# ifndef __uid_t_defined
|
||||
typedef __uid_t uid_t;
|
||||
# define uid_t uid_t
|
||||
# define __uid_t_defined
|
||||
# endif
|
||||
#endif /* X/Open */
|
||||
|
||||
#ifdef __USE_UNIX98
|
||||
# ifndef pid_t
|
||||
# ifndef __pid_t_defined
|
||||
typedef __pid_t pid_t;
|
||||
# define pid_t pid_t
|
||||
# define __pid_t_defined
|
||||
# endif
|
||||
#endif /* Unix98 */
|
||||
|
||||
|
Reference in New Issue
Block a user