mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 15:24:40 -05:00
8 lines
157 B
C
8 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 ());
|
|
}
|