mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
14 lines
470 B
C++
14 lines
470 B
C++
#include "sys/sysproto.hpp"
|
|
|
|
orbis::SysResult orbis::sys_ntp_gettime(Thread *thread,
|
|
ptr<struct ntptimeval> ntvp) {
|
|
return ErrorCode::NOSYS;
|
|
}
|
|
orbis::SysResult orbis::sys_ntp_adjtime(Thread *thread, ptr<struct timex> tp) {
|
|
return ErrorCode::NOSYS;
|
|
}
|
|
orbis::SysResult orbis::sys_adjtime(Thread *thread, ptr<struct timeval> delta,
|
|
ptr<struct timeval> olddelta) {
|
|
return ErrorCode::NOSYS;
|
|
}
|