/* Trivial implementation for arches that lack vfork */ #include #include pid_t vfork(void) { return fork(); }