luajitos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

setjmp.h (157B)


      1 #ifndef _SETJMP_H
      2 #define _SETJMP_H
      3 
      4 typedef int jmp_buf[6];
      5 
      6 int setjmp(jmp_buf env);
      7 void longjmp(jmp_buf env, int val) __attribute__((noreturn));
      8 
      9 #endif