HPGCC3 Documentation 3.0 R003

setjmp.h

Go to the documentation of this file.
00001 //& *** (c) 2006-2011 The HPGCC3 Team ***
00002 //& Claudio Lapilli
00003 //& Ingo Blank
00004 //&
00005 //& This file is licensed under the terms and conditions of the
00006 //& HPGCC3 license that is included with the source distribution.
00007 //& *** (c) 2006-2011 The HPGCC3 Team ***
00008 
00009 
00010 #ifndef SETJMP_H_
00011 #define SETJMP_H_
00012 
00013 typedef unsigned int jmp_buf[14]; 
00014 
00015 int setjmp(jmp_buf env);
00016 void longjmp(jmp_buf env,int val);
00017 
00018 
00019 #endif /*SETJMP_H_*/