16 lines
203 B
C
16 lines
203 B
C
#pragma once
|
|
|
|
#include <_cheader.h>
|
|
|
|
_Begin_C_Header
|
|
|
|
/* i386 */
|
|
#define _JBLEN 9
|
|
|
|
typedef long long jmp_buf[_JBLEN];
|
|
|
|
extern void longjmp(jmp_buf j, int r);
|
|
extern int setjmp(jmp_buf j);
|
|
|
|
_End_C_Header
|