file ld.info-6 was initially added on branch binutils-2_11-branch.
[binutils.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 ());