mirror of
https://github.com/id-Software/Quake-III-Arena.git
synced 2026-03-20 17:10:56 +01:00
11 lines
134 B
C
11 lines
134 B
C
#ifndef __SETJMP
|
|
#define __SETJMP
|
|
|
|
|
|
|
|
typedef int jmp_buf[12];
|
|
int setjmp(jmp_buf);
|
|
void longjmp(jmp_buf, int);
|
|
|
|
#endif /* __SETJMP */
|