mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 00:14:25 +00:00
18 lines
689 B
C
18 lines
689 B
C
/****************************************************************************/
|
|
/* */
|
|
/* s e t j m p . h */
|
|
/* --------------- */
|
|
/* */
|
|
/* Copyright 1982 by Zilog Inc. All rights reserved */
|
|
/* */
|
|
/* Definitions for setjmp and longjmp non-local goto library functions.*/
|
|
/* jmp_buf is large enough to hold copies of the eight "safe" */
|
|
/* registers and a segmented return address. Thus the last word is */
|
|
/* not used in non-segmented environments */
|
|
/* */
|
|
/****************************************************************************/
|
|
|
|
typedef int jmp_buf[10];
|
|
|
|
extern int setjmp(), longjmp();
|