old-cross-binutils/libiberty/vfork.c
1999-05-03 07:29:11 +00:00

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