freebsd-dev/contrib/binutils/libiberty/vfork.c
David E. O'Brien c9edceadd8 Import of GNU Binutils version 2.11.0.
Believe it or not, this is heavily stripped down.
2001-05-28 05:21:37 +00:00

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