mirror of
https://github.com/UberGames/ioef.git
synced 2024-12-13 06:01:12 +00:00
11 lines
139 B
C
11 lines
139 B
C
|
#ifndef __SETJMP
|
||
|
#define __SETJMP
|
||
|
|
||
|
|
||
|
|
||
|
typedef int jmp_buf[35+1+48];
|
||
|
int setjmp(jmp_buf);
|
||
|
void longjmp(jmp_buf, int);
|
||
|
|
||
|
#endif /* __SETJMP */
|