2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2024-12-24 04:28:56 +08:00
gcc/libiberty/vfork.c
Jason Merrill 6599da043e Initial revision
From-SVN: r14877
1997-08-21 18:57:35 -04:00

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 ());
}