Files
RedBear-OS/include
vasilito 5a441d5a1c setjmp.h: declare the POSIX _setjmp/_longjmp
relibc already exports both -- nm libc.a shows 'T _setjmp' and
'T _longjmp' as aliases of setjmp/longjmp -- but setjmp.h never declared
them, so callers got an implicit declaration. GCC 14+ makes that an
error:

    lua-5.4.4/src/ldo.c:66: error: implicit declaration of function
    '_longjmp'; did you mean 'longjmp'?

which broke wireplumber, since it bundles Lua and Lua uses them under
LUA_USE_POSIX.

The difference between the two forms is whether the signal mask is
saved; relibc's implementation saves it in neither, so exporting them as
aliases is accurate rather than a convenience.
2026-08-03 20:25:32 +03:00
..
2019-01-01 07:35:13 -07:00
2019-01-15 20:49:15 -07:00
2018-11-23 21:31:09 +01:00
2018-12-14 12:50:23 -07:00
2024-11-10 16:19:15 +01:00
2026-01-12 12:38:28 -07:00
2018-07-27 18:27:51 +02:00
2025-08-09 01:16:12 -04:00
2023-05-06 17:02:54 +02:00
2024-11-27 01:25:53 -05:00
2025-07-24 21:46:49 -04:00