1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 03:44:58 +00:00
serenity/LibC/setjmp.h
Andreas Kling e76312ab63 Lots of minor compat stuff while seeing if bash would build.
We're quite far from bash building, but we'll get there eventually!
2018-11-05 16:40:48 +01:00

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