Skip to content
Snippets Groups Projects
Commit 7fcc258d authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

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

parent adab1439
No related branches found
No related tags found
No related merge requests found
......@@ -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 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment