#include #include #include namespace os { Result Process::fork() { long rc = syscall(SYS_fork); return Result::from_syscall(rc); } }