Quake-III-Arena

Quake III Arena GPL Source Release
Log | Files | Refs

setjmp.h (134B)


      1 #ifndef __SETJMP
      2 #define __SETJMP
      3 
      4 
      5 
      6 typedef int jmp_buf[28];
      7 int setjmp(jmp_buf);
      8 void longjmp(jmp_buf, int);
      9 
     10 #endif /* __SETJMP */