From d4dae59c225365f8b13429aca60bb256e58cd2e9 Mon Sep 17 00:00:00 2001 From: Manfred Hollstein Date: Tue, 7 Oct 1997 16:22:48 +0000 Subject: man.c (SIGCHLD): Define to SIGCLD if fails to provide it. * info/man.c (SIGCHLD): Define to SIGCLD if fails to provide it. From-SVN: r15857 --- texinfo/info/man.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'texinfo/info') diff --git a/texinfo/info/man.c b/texinfo/info/man.c index b899ec1..f278837 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 -- cgit v1.1