mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-16 13:40:50 +01:00
15 lines
508 B
C++
15 lines
508 B
C++
#include "sys/sysproto.hpp"
|
|
|
|
orbis::SysResult orbis::sys_mount(Thread *thread, ptr<char> type,
|
|
ptr<char> path, sint flags, caddr_t data) {
|
|
return ErrorCode::NOSYS;
|
|
}
|
|
orbis::SysResult orbis::sys_unmount(Thread *thread, ptr<char> path,
|
|
sint flags) {
|
|
return ErrorCode::NOSYS;
|
|
}
|
|
orbis::SysResult orbis::sys_nmount(Thread *thread, ptr<IoVec> iovp, uint iovcnt,
|
|
sint flags) {
|
|
return ErrorCode::NOSYS;
|
|
}
|