1999-05-03 03:29:11 -04:00
|
|
|
/* Emulate vfork using just plain fork, for systems without a real vfork.
|
|
|
|
This function is in the public domain. */
|
|
|
|
|
2000-10-11 22:16:48 -04:00
|
|
|
#include "ansidecl.h"
|
|
|
|
|
|
|
|
extern int fork PARAMS ((void));
|
|
|
|
|
1999-05-03 03:29:11 -04:00
|
|
|
int
|
|
|
|
vfork ()
|
|
|
|
{
|
|
|
|
return (fork ());
|
|
|
|
}
|