
/*
* If debugging, we include a sleep to separate the  child's  startup  messages
* from  ours.  The child will inherit our open files, including Vout, and it
* can help to avoid jumbling the output together, to give the child  a  chance
* to start up cleanly.
*/
#include "V.h"
d_fork()
{	int v;
	Fpush("d_fork");
	mypid = getpid();
	V7 "before fork() in process %d",mypid D;
	errno = 0;
	v = fork();
	mypid = getpid();
	V6 " after fork()=%d in process %d [Err %d=%s=%s]",v,mypid,Errinfo D;
	Fpop;
	return(v);
}
