mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2025-01-05 16:30:51 +00:00
11 lines
134 B
C
11 lines
134 B
C
|
#ifndef __SETJMP
|
||
|
#define __SETJMP
|
||
|
|
||
|
|
||
|
|
||
|
typedef int jmp_buf[28];
|
||
|
int setjmp(jmp_buf);
|
||
|
void longjmp(jmp_buf, int);
|
||
|
|
||
|
#endif /* __SETJMP */
|