#include "sys/sysproto.hpp" orbis::SysResult orbis::sys_getcontext(Thread *thread, ptr ucp) { return ErrorCode::NOSYS; } orbis::SysResult orbis::sys_setcontext(Thread *thread, ptr ucp) { return ErrorCode::NOSYS; } orbis::SysResult orbis::sys_swapcontext(Thread *thread, ptr oucp, ptr ucp) { return ErrorCode::NOSYS; }