OSDN Git Service

2000-07-17 Gabriel Dos Reis <gdr@codesourcery.com>
[pf3gnuchains/gcc-fork.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 }