mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-08 17:50:31 +01:00
5 lines
228 B
C++
5 lines
228 B
C++
|
|
#include "sys/sysproto.hpp"
|
||
|
|
|
||
|
|
orbis::SysResult orbis::sys_swapon(Thread *thread, ptr<char> name) { return ErrorCode::NOSYS; }
|
||
|
|
orbis::SysResult orbis::sys_swapoff(Thread *thread, ptr<const char> name) { return ErrorCode::NOSYS; }
|