scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

setjmp.h (186B)


      1 #ifndef _SETJMP_H
      2 #define _SETJMP_H
      3 
      4 #include <arch/setjmp.h>
      5 
      6 #define setjmp(x) setjmp(x)
      7 
      8 extern int setjmp(jmp_buf);
      9 extern void longjmp(jmp_buf, int);
     10 
     11 #define setjmp setjmp
     12 
     13 #endif