1998-03-01 22:58:51 +00:00
|
|
|
/* Emulate vfork using just plain fork, for systems without a real vfork.
|
|
|
|
This function is in the public domain. */
|
|
|
|
|
2001-05-28 05:21:37 +00:00
|
|
|
#include "ansidecl.h"
|
|
|
|
|
|
|
|
extern int fork PARAMS ((void));
|
|
|
|
|
1998-03-01 22:58:51 +00:00
|
|
|
int
|
|
|
|
vfork ()
|
|
|
|
{
|
|
|
|
return (fork ());
|
|
|
|
}
|