mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-12-14 22:41:42 +00:00
10 lines
144 B
C
Executable file
10 lines
144 B
C
Executable file
#ifndef __SETJMP
|
|
#define __SETJMP
|
|
|
|
|
|
|
|
typedef int jmp_buf[12];
|
|
int setjmp(jmp_buf);
|
|
void longjmp(jmp_buf, int);
|
|
|
|
#endif /* __SETJMP */
|