mirror of
https://github.com/nArnoSNES/tcc-65816.git
synced 2024-10-31 11:04:55 +00:00
5 lines
86 B
C
5 lines
86 B
C
|
typedef int jmp_buf[3];
|
||
|
|
||
|
int setjmp(jmp_buf env);
|
||
|
void longjmp(jmp_buf env, int val);
|