about summary refs log tree commit diff
path: root/signal
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-06-23 11:04:09 +0000
committerUlrich Drepper <drepper@redhat.com>1999-06-23 11:04:09 +0000
commit7df789e05906a883d03ed2cb2c400356350767cc (patch)
treeadd7f546a432615f01f0b1939fa20cc5b02ee67d /signal
parent1cc2b04ed7932364d53baf58d0730acbaa1b4bb7 (diff)
downloadglibc-7df789e05906a883d03ed2cb2c400356350767cc.tar.gz
glibc-7df789e05906a883d03ed2cb2c400356350767cc.tar.xz
glibc-7df789e05906a883d03ed2cb2c400356350767cc.zip
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.
Diffstat (limited to 'signal')
-rw-r--r--signal/signal.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/signal/signal.h b/signal/signal.h
index 6b8c345b87..02d7a79c65 100644
--- a/signal/signal.h
+++ b/signal/signal.h
@@ -37,7 +37,7 @@ __BEGIN_DECLS
 #ifndef __sig_atomic_t_defined
 # if defined __need_sig_atomic_t || defined _SIGNAL_H
 #  undef __need_sig_atomic_t
-#  define __sig_atomic_t_defined 1
+#  define __sig_atomic_t_defined
 typedef __sig_atomic_t sig_atomic_t;
 # endif
 #endif
@@ -45,7 +45,7 @@ typedef __sig_atomic_t sig_atomic_t;
 #ifndef __sigset_t_defined
 # if defined __need_sigset_t || (defined _SIGNAL_H && defined __USE_POSIX)
 #  undef __need_sigset_t
-#  define __sigset_t_defined	1
+#  define __sigset_t_defined
 typedef __sigset_t sigset_t;
 # endif
 #endif
@@ -55,9 +55,9 @@ typedef __sigset_t sigset_t;
 #include <bits/types.h>
 #include <bits/signum.h>
 
-#if defined __USE_XOPEN && !defined pid_t
+#if defined __USE_XOPEN && !defined __pid_t_defined
 typedef __pid_t pid_t;
-# define pid_t pid_t
+# define __pid_t_defined
 #endif	/* Unix98 */