1 /* Emulate vfork using just plain fork, for systems without a real vfork.
2 This function is in the public domain. */
6 @deftypefn Supplemental int vfork (void)
8 Emulates @code{vfork} by calling @code{fork} and returning its value.
16 extern int fork (void);