1 2 3 4 5 6 7 8
#include <unistd.h> #include <syscall.h> #include <linux/signal.h> pid_t _Fork(void) { return syscall(clone, SIGCHLD, 0); }