toaruos/base/usr/include/setjmp.h

10 lines
142 B
C
Raw Normal View History

#pragma once
/* i386 */
#define _JBLEN 9
typedef int jmp_buf[_JBLEN];
extern void longjmp(jmp_buf j, int r);
extern int setjmp(jmp_buf j);