mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
9 lines
223 B
C++
9 lines
223 B
C++
#include "sys/sysproto.hpp"
|
|
|
|
orbis::SysResult orbis::sys_obreak(Thread *thread, ptr<char> nsize) {
|
|
return ErrorCode::NOSYS;
|
|
}
|
|
orbis::SysResult orbis::sys_ovadvise(Thread *thread, sint anom) {
|
|
return ErrorCode::NOSYS;
|
|
}
|