1 2 3 4 5 6 7 8 9 10 11 12
/* 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 ()); }