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

18 lines
387 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-12-18 14:00:32 +00:00
#if !defined(_SETJMP_H)
#define _SETJMP_H
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-12-18 14:00:32 +00:00
#endif /* _SETJMP_H */