1/* Emulate vfork using just plain fork, for systems without a real vfork.
2   This function is in the public domain. */
3
4#include <unistd.h>
5
6pid_t
7vfork (void)
8{
9  return (fork ());
10}
11