#ifndef FORK_H #define FORK_H #include "syscalls.h" static int fork() { return syscall(FORK); } #endif