86c45919f660f5a6ba106f3035a5908819eac38b
[deliverable/binutils-gdb.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 int
5 vfork ()
6 {
7 return (fork ());
8 }
This page took 0.032145 seconds and 4 git commands to generate.