aboutsummaryrefslogtreecommitdiff
path: root/texinfo/info
diff options
context:
space:
mode:
authorManfred Hollstein <manfred@lts.sel.alcatel.de>1997-10-07 16:22:48 +0000
committerJeffrey A Law <law@cygnus.com>1997-10-07 16:22:48 +0000
commitf18e16a07809dbb9f6dba129b67f048b99bbdab6 (patch)
treed717cd44a4b1b03ac3f29bc838ef4a4bda3a9fd4 /texinfo/info
parent6c3f49f0142491f61c0644b5ef0dab3fc01e09cf (diff)
* info/man.c (SIGCHLD): Define to SIGCLD if <sys/signal.h>
fails to provide it. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@15857 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'texinfo/info')
-rw-r--r--texinfo/info/man.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/texinfo/info/man.c b/texinfo/info/man.c
index b899ec1d273..f278837e10a 100644
--- a/texinfo/info/man.c
+++ b/texinfo/info/man.c
@@ -35,6 +35,10 @@
#include "man.h"
+#if !defined (SIGCHLD) && defined (SIGCLD)
+#define SIGCHLD SIGCLD
+#endif
+
#if !defined (_POSIX_VERSION)
#define pid_t int
#endif