10 lines
142 B
C
10 lines
142 B
C
#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);
|