mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-10-31 11:07:44 +00:00
22 lines
396 B
C
22 lines
396 B
C
/****************************************************************
|
|
*
|
|
* setjmp.h - nonlocal jump library
|
|
*
|
|
* February 1989
|
|
* Mike Westerfield
|
|
*
|
|
* Copyright 1989
|
|
* Byte Works, Inc.
|
|
*
|
|
****************************************************************/
|
|
|
|
#ifndef __setjmp__
|
|
#define __setjmp__
|
|
|
|
typedef int jmp_buf[6];
|
|
|
|
void longjmp(jmp_buf, int);
|
|
int setjmp(jmp_buf);
|
|
|
|
#endif
|