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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=40189

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);