blob: 86c45919f660f5a6ba106f3035a5908819eac38b [file] [log] [blame]
/* Emulate vfork using just plain fork, for systems without a real vfork.
This function is in the public domain. */
int
vfork ()
{
return (fork ());
}