mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
e76312ab63
We're quite far from bash building, but we'll get there eventually!
13 lines
172 B
C
13 lines
172 B
C
#pragma once
|
|
|
|
#include <sys/cdefs.h>
|
|
#include <sys/types.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
typedef uint32_t jmp_buf[6];
|
|
|
|
int setjmp(jmp_buf);
|
|
void longjmp(jmp_buf, int val);
|
|
|
|
__END_DECLS
|