1999-04-17 10:15 -0400 Zack Weinberg <zack@rabi.columbia.edu>
[official-gcc.git] / libiberty / vfork.c
blob86c45919f660f5a6ba106f3035a5908819eac38b
1 /* Emulate vfork using just plain fork, for systems without a real vfork.
2 This function is in the public domain. */
4 int
5 vfork ()
7 return (fork ());