mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 12:39:59 +00:00
9 lines
157 B
C
9 lines
157 B
C
/* Emulate vfork using just plain fork, for systems without a real vfork.
|
|
This function is in the public domain. */
|
|
|
|
int
|
|
vfork ()
|
|
{
|
|
return (fork ());
|
|
}
|