mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-30 15:51:53 +00:00
10 lines
134 B
C
10 lines
134 B
C
#ifndef __SETJMP
|
|
#define __SETJMP
|
|
|
|
|
|
|
|
typedef int jmp_buf[12];
|
|
int setjmp(jmp_buf);
|
|
void longjmp(jmp_buf, int);
|
|
|
|
#endif /* __SETJMP */
|