#include "syscall.h" #include int main(int argc, char *argv[]) { (void)argc; (void)argv; if (fork() == 0) { return 1; } return 0; }