diff options
author | Roland McGrath <roland@redhat.com> | 1993-04-12 20:51:42 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1993-04-12 20:51:42 +0000 |
commit | 8c01d0459a99d9e5a594c5c2d02fff68719ad1c9 (patch) | |
tree | 550b98d86659e189b6a3af2ac618c0770b5bc82a | |
parent | e4dce6fa1115a20d1540bd348c9ba98afa0c8585 (diff) | |
download | gunmake-8c01d0459a99d9e5a594c5c2d02fff68719ad1c9.tar.gz |
Formerly main.c.~78~
-rw-r--r-- | main.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 |