mirror of
https://github.com/mirror/make.git
synced 2025-01-04 01:10:26 +08:00
Formerly main.c.~78~
This commit is contained in:
parent
e4dce6fa11
commit
8c01d0459a
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 New Issue
Block a user