mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
9 lines
232 B
C++
9 lines
232 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;
|
|
}
|