ack/lang/cem/libcc.ansi/headers/setjmp.h

18 lines
411 B
C
Raw Normal View History

1989-05-16 13:13:53 +00:00
/*
* setjmp.h - restore calling environment
*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* $Header$ */
1989-09-29 15:46:33 +00:00
#if !defined(__SETJMP_HEADER__)
#define __SETJMP_HEADER__
1989-05-16 13:13:53 +00:00
typedef char jmp_buf[256];
1989-09-29 15:46:33 +00:00
int setjmp(jmp_buf __env);
void longjmp(jmp_buf __env, int __val);
1989-05-16 13:13:53 +00:00
1989-09-29 15:46:33 +00:00
#endif /* __SETJMP_HEADER__ */