home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1996 September
/
pcwk_09_96.iso
/
demo
/
wgelectr
/
pk51demo
/
files.2
/
INC
/
SETJMP.H
< prev
next >
Wrap
C/C++ Source or Header
|
1994-12-12
|
454b
|
18 lines
/* SETJMP.H: prototypes for longjmp facility */
/* Copyright KEIL ELEKTRONIK GmbH 1994 V5.00 */
/* define the buffer type for holding the state information */
#pragma SAVE
#pragma REGPARMS
#ifndef _JMP_BUF_DEFINED
#define _JBLEN 7 /* RET-ADDR, ?C_XBP, ?C_IBP, ?C_BP, SP */
typedef char jmp_buf[_JBLEN];
#define _JMP_BUF_DEFINED
#endif
/* function prototypes */
int setjmp (jmp_buf);
void longjmp (jmp_buf, int);
#pragma RESTORE