summaryrefslogtreecommitdiff
path: root/signal.c
diff options
context:
space:
mode:
Diffstat (limited to 'signal.c')
-rw-r--r--signal.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/signal.c b/signal.c
index 103514ae64..3d9a1dbde5 100644
--- a/signal.c
+++ b/signal.c
@@ -896,16 +896,6 @@ int reserved_signal_p(int signo)
return 1;
#endif
-/* On some OSs, wait() never return if SIGCHLD handler is installed. */
-#ifdef SIGCHLD
- if (signo == SIGCHLD)
- return 1;
-#endif
-#ifdef SIGCLD
- if (signo == SIGCLD)
- return 1;
-#endif
-
return 0;
}