mirror of
https://sourceware.org/git/glibc.git
synced 2025-12-09 14:21:14 +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:
@@ -114,15 +114,15 @@ typedef unsigned long long int uint_fast64_t;
|
||||
|
||||
/* Types for `void *' pointers. */
|
||||
#if __WORDSIZE == 64
|
||||
# ifndef intptr_t
|
||||
# ifndef __intptr_t_defined
|
||||
typedef long int intptr_t;
|
||||
# define intptr_t intptr_t
|
||||
# define __intptr_t_defined
|
||||
# endif
|
||||
typedef unsigned long int uintptr_t;
|
||||
#else
|
||||
# ifndef intptr_t
|
||||
# ifndef __intptr_t_defined
|
||||
typedef int intptr_t;
|
||||
# define intptr_t intptr_t
|
||||
# define __intptr_t_defined
|
||||
# endif
|
||||
typedef unsigned int uintptr_t;
|
||||
#endif
|
||||
|
||||
@@ -23,9 +23,9 @@
|
||||
#include <sys/time.h>
|
||||
|
||||
/* Required according to Unix98. */
|
||||
#ifndef pid_t
|
||||
#ifndef __pid_t_defined
|
||||
typedef __pid_t pid_t;
|
||||
# define pid_t pid_t
|
||||
# define __pid_t_defined
|
||||
#endif
|
||||
|
||||
/* Get system dependent values and data structures. */
|
||||
|
||||
Reference in New Issue
Block a user