ack/lang/cem/libcc.ansi/headers/setjmp.h
1989-12-18 14:00:32 +00:00

18 lines
387 B
C

/*
* 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$ */
#if !defined(_SETJMP_H)
#define _SETJMP_H
typedef char jmp_buf[256];
int setjmp(jmp_buf __env);
void longjmp(jmp_buf __env, int __val);
#endif /* _SETJMP_H */