longjmp is questionable

This commit is contained in:
georgemoralis 2025-02-14 09:54:03 +02:00
parent d9bbbb2cb2
commit 5de3188c51

View File

@ -10507,9 +10507,9 @@ s32 PS4_SYSV_ABI internal_localtime_s() {
return ORBIS_OK; return ORBIS_OK;
} }
void PS4_SYSV_ABI internal_longjmp(std::jmp_buf env, int status) { s32 PS4_SYSV_ABI internal_longjmp() {
LOG_INFO(Lib_LibcInternal, "called"); LOG_ERROR(Lib_LibcInternal, "(STUBBED) called");
std::longjmp(env, status); return ORBIS_OK;
} }
s32 PS4_SYSV_ABI internal_lrand48() { s32 PS4_SYSV_ABI internal_lrand48() {