/* Copyright 1989, 1990, 1992 Digital Equipment Corporation All rights reserved. This software is furnished under a license and may be used and copied only in accordance with the terms of such license and with the inclusion of the above copyright notice. This software and any copies shall not be provided to any other person. No title to or ownership of the software is hereby transferred. The information in this software is subject to change without notice. DIGITAL assumes no responsibility for the use, functionality or reliability of its software on equipment which is not supplied by DIGITAL. setjmp.h */ #ifndef __SETJMP_H #define __SETJMP_H /* Typedef definitions: */ typedef int jmp_buf[ 20 ]; #ifndef __STDC__ #define longjmp C$LGJP #endif /* Macro Defintions: */ #define setjmp(__env) ( (int)( __stjp(__env) ) ) #pragma linkage c longjmp void longjmp ( jmp_buf __env, int __val ); int __stjp ( jmp_buf __env); #endif