tumbledemerald-legacy/agbcc/libiberty/vfork.c
2022-05-19 17:14:13 +00:00

9 lines
157 B
C
Executable File

/* Emulate vfork using just plain fork, for systems without a real vfork.
This function is in the public domain. */
int
vfork ()
{
return (fork ());
}