Formerly main.c.~78~
authorRoland McGrath <roland@redhat.com>
Mon, 12 Apr 1993 20:51:42 +0000 (20:51 +0000)
committerRoland McGrath <roland@redhat.com>
Mon, 12 Apr 1993 20:51:42 +0000 (20:51 +0000)
main.c

diff --git a/main.c b/main.c
index a76b479..c4a7ddf 100644 (file)
--- a/main.c
+++ b/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