rpcsx/orbis-kernel/src/sys/sys_pty_pts.cpp
2023-07-06 21:37:30 +01:00

6 lines
129 B
C++

#include "sys/sysproto.hpp"
orbis::SysResult orbis::sys_posix_openpt(Thread *thread, sint flags) {
return ErrorCode::NOSYS;
}