vfork -> fork. The child calls abort(), which calls stdio.

This commit is contained in:
Bruce Evans 1998-10-10 19:21:39 +00:00
parent db6b691087
commit 46ccc3e932

View File

@ -369,7 +369,7 @@ core()
int pid;
extern union wait wait_status;
switch (pid = vfork()) {
switch (pid = fork()) {
case -1:
perror("fork");
return(1);