mirror of
https://github.com/pret/agbcc.git
synced 2026-03-21 17:44:20 -05:00
9 lines
157 B
C
Executable File
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 ());
|
|
}
|