mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
11 lines
351 B
C++
11 lines
351 B
C++
#include "sys/sysproto.hpp"
|
|
|
|
orbis::SysResult orbis::sys_ktrace(Thread *thread, ptr<const char> fname,
|
|
sint ops, sint facs, sint pit) {
|
|
return ErrorCode::NOSYS;
|
|
}
|
|
orbis::SysResult orbis::sys_utrace(Thread *thread, ptr<const void> addr,
|
|
size_t len) {
|
|
return ErrorCode::NOSYS;
|
|
}
|