]> gcc.gnu.org Git - gcc.git/blob - libiberty/vfork.c
jump.c (reversed_comparison_code_parts): Reverse Jan Hubricka's 2001-02-28 patch...
[gcc.git] / libiberty / vfork.c
1 /* Emulate vfork using just plain fork, for systems without a real vfork.
2 This function is in the public domain. */
3
4 #include "ansidecl.h"
5
6 extern int fork PARAMS ((void));
7
8 int
9 vfork ()
10 {
11 return (fork ());
12 }
This page took 0.037405 seconds and 5 git commands to generate.