man.c (SIGCHLD): Define to SIGCLD if <sys/signal.h> fails to provide it.
* info/man.c (SIGCHLD): Define to SIGCLD if <sys/signal.h> fails to provide it. From-SVN: r15857
This commit is contained in:
parent
e9e3025300
commit
d4dae59c22
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Tue Oct 7 10:25:22 1997 Manfred Hollstein (manfred@lts.sel.alcatel.de)
|
||||||
|
|
||||||
|
* info/man.c (SIGCHLD): Define to SIGCLD if <sys/signal.h>
|
||||||
|
fails to provide it.
|
||||||
|
|
||||||
Wed Sep 17 23:56:11 1997 Jeffrey A Law (law@cygnus.com)
|
Wed Sep 17 23:56:11 1997 Jeffrey A Law (law@cygnus.com)
|
||||||
|
|
||||||
* util/install-info.c: Only provide an external decl for strrchr
|
* util/install-info.c: Only provide an external decl for strrchr
|
||||||
|
|
|
@ -35,6 +35,10 @@
|
||||||
|
|
||||||
#include "man.h"
|
#include "man.h"
|
||||||
|
|
||||||
|
#if !defined (SIGCHLD) && defined (SIGCLD)
|
||||||
|
#define SIGCHLD SIGCLD
|
||||||
|
#endif
|
||||||
|
|
||||||
#if !defined (_POSIX_VERSION)
|
#if !defined (_POSIX_VERSION)
|
||||||
#define pid_t int
|
#define pid_t int
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue