Skip to content

Commit

Permalink
longjmp is questionable
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemoralis committed Feb 14, 2025
1 parent d9bbbb2 commit 5de3188
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/libraries/libc_internal/libc_internal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10507,9 +10507,9 @@ s32 PS4_SYSV_ABI internal_localtime_s() {
return ORBIS_OK;
}

void PS4_SYSV_ABI internal_longjmp(std::jmp_buf env, int status) {
LOG_INFO(Lib_LibcInternal, "called");
std::longjmp(env, status);
s32 PS4_SYSV_ABI internal_longjmp() {
LOG_ERROR(Lib_LibcInternal, "(STUBBED) called");
return ORBIS_OK;
}

s32 PS4_SYSV_ABI internal_lrand48() {
Expand Down

0 comments on commit 5de3188

Please sign in to comment.