old-cross-binutils/libiberty/vfork.c
2000-10-12 02:16:48 +00:00

12 lines
214 B
C

/* Emulate vfork using just plain fork, for systems without a real vfork.
This function is in the public domain. */
#include "ansidecl.h"
extern int fork PARAMS ((void));
int
vfork ()
{
return (fork ());
}