1 2 3 4 5 6 7 8
/* Trivial implementation for arches that lack vfork */ #include <unistd.h> #include <sys/types.h> pid_t vfork(void) { return fork(); }