mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
A bunch of compat work (mostly stubs but some real implementations, too.)
Another pass at getting bash-1.14.7 to build. Not that many symbols remain.
This commit is contained in:
parent
6a0a2c9ab4
commit
3b2f172d48
Notes:
sideshowbarker
2024-07-19 16:11:17 +09:00
Author: https://github.com/awesomekling
Commit: 3b2f172d48
9 changed files with 134 additions and 2 deletions
|
@ -0,0 +1,13 @@
|
|||
#include <setjmp.h>
|
||||
#include <assert.h>
|
||||
#include <Kernel/Syscall.h>
|
||||
|
||||
int setjmp(jmp_buf)
|
||||
{
|
||||
assert(false);
|
||||
}
|
||||
|
||||
void longjmp(jmp_buf, int val)
|
||||
{
|
||||
assert(false);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue