Fix the fix to the wait4child fix - forgot an #else

This commit is contained in:
Hallvard Furuseth 1999-04-02 08:30:02 +00:00
parent adab14395b
commit 7fcc258d28

View file

@ -322,6 +322,7 @@ wait4child( int sig )
while ( wait3( NULL, WNOHANG, NULL ) >= 0 || errno == EINTR )
; /* NULL */
#endif
#else
(void) wait( NULL );
#endif
(void) SIGNAL( sig, wait4child );