* doc/gcov.texi: Use more logical markup.
[official-gcc.git] / libiberty / vfork.c
blob5e8772100815f107d1927ab11cb253c08e8aad71
1 /* Emulate vfork using just plain fork, for systems without a real vfork.
2 This function is in the public domain. */
4 #include "ansidecl.h"
6 extern int fork PARAMS ((void));
8 int
9 vfork ()
11 return (fork ());