mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-25 03:44:04 +08:00
6599da043e
From-SVN: r14877
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 ());
|
|
}
|