vfork.c 141 B

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