mirror of
https://github.com/fincs/FeOS.git
synced 2025-06-19 03:25:33 -04:00
10 lines
214 B
C
10 lines
214 B
C
#pragma once
|
|
|
|
// r4..r11, sp & lr
|
|
typedef word_t jmp_buf[10];
|
|
|
|
// Remember that jmp_buf is still a pointer
|
|
int setjmp(jmp_buf);
|
|
void longjmp(jmp_buf, int);
|
|
void longjmp0(jmp_buf, int); // allows '0' as return code
|