fork.c (125B)
1 #include <unistd.h> 2 #include <stdlib.h> 3 #include "syscall.h" 4 5 int fork(void) 6 { 7 return syscall(VXSYSFORK, 0, 0, 0, 0, 0); 8 } 9