2018-03-16 16:40:23 +03:00
|
|
|
#pragma once
|
|
|
|
|
2018-10-12 05:15:40 +03:00
|
|
|
#include <_cheader.h>
|
|
|
|
|
|
|
|
_Begin_C_Header
|
|
|
|
|
2018-03-16 16:40:23 +03:00
|
|
|
/* i386 */
|
|
|
|
#define _JBLEN 9
|
|
|
|
|
|
|
|
typedef int jmp_buf[_JBLEN];
|
|
|
|
|
|
|
|
extern void longjmp(jmp_buf j, int r);
|
|
|
|
extern int setjmp(jmp_buf j);
|
2018-10-12 05:15:40 +03:00
|
|
|
|
|
|
|
_End_C_Header
|