boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

setjmp.h (119B)


      1 #ifndef _SETJMP_H
      2 #define _SETJMP_H
      3 typedef long jmp_buf[32];
      4 int  setjmp(jmp_buf);
      5 void longjmp(jmp_buf, int);
      6 #endif