amigaos-gcc-2.95.3/libiberty/vfork.c

11 lines
171 B
C

/* Emulate vfork using just plain fork, for systems without a real vfork.
This function is in the public domain. */
int fork ();
int
vfork ()
{
return (fork ());
}