Formerly main.c.~78~

This commit is contained in:
Roland McGrath 1993-04-12 20:51:42 +00:00
parent e4dce6fa11
commit 8c01d0459a

5
main.c
View file

@ -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