ORCA-C/bin/Libraries/ORCACDefs/setjmp.h

1 line
396 B
C
Raw Normal View History

/**************************************************************** * * setjmp.h - nonlocal jump library * * February 1989 * Mike Westerfield * * Copyright 1989 * Byte Works, Inc. * ****************************************************************/ #ifndef __setjmp__ #define __setjmp__ typedef int jmp_buf[4]; void longjmp(jmp_buf, int); int setjmp(jmp_buf); #endif