mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
[orbis-kernel] implement sys_lstat
This commit is contained in:
parent
6b24ed11a1
commit
2278a298ac
|
|
@ -193,7 +193,7 @@ orbis::SysResult orbis::sys_fstatat(Thread *thread, sint fd, ptr<char> path,
|
|||
}
|
||||
orbis::SysResult orbis::sys_lstat(Thread *thread, ptr<char> path,
|
||||
ptr<Stat> ub) {
|
||||
return ErrorCode::NOSYS;
|
||||
return sys_stat(thread, path, ub);
|
||||
}
|
||||
orbis::SysResult orbis::sys_nstat(Thread *thread, ptr<char> path,
|
||||
ptr<struct nstat> ub) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue