Home
       setjmp.h - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       setjmp.h (157B)
       ---
            1 #ifndef _SETJMP_H
            2 #define _SETJMP_H
            3 
            4 #include <arch/setjmp.h>
            5 
            6 extern int setjmp(jmp_buf);
            7 extern void longjmp(jmp_buf, int);
            8 
            9 #define setjmp setjmp
           10 
           11 #endif