mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-29 08:09:02 +00:00
Formerly main.c.~78~
This commit is contained in:
parent
e4dce6fa11
commit
8c01d0459a
1 changed files with 3 additions and 2 deletions
5
main.c
5
main.c
|
@ -695,9 +695,10 @@ main (argc, argv, envp)
|
|||
/* Set up to handle children dying. This must be done before
|
||||
reading in the makefiles so that `shell' function calls will work. */
|
||||
|
||||
#if defined (SIGCHLD) && !defined (USG)
|
||||
#ifdef SIGCHLD
|
||||
(void) signal (SIGCHLD, child_handler);
|
||||
#else
|
||||
#endif
|
||||
#ifdef SIGCLD
|
||||
(void) signal (SIGCLD, child_handler);
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue