#include "asm/unistd_64.h" // for __NR_clone #include // for SIGCHLD #include // for __syscall_2, syscall #include // for _Fork, pid_t pid_t _Fork(void) { return syscall(clone, SIGCHLD, 0); }