1 /*------------------------------------------------------*/
2 /* SH SERIES C Compiler Ver. 1.0 */
3 /* Copyright (c) 1992 Hitachi,Ltd. */
4 /* Licensed material of Hitachi,Ltd. */
5 /*------------------------------------------------------*/
6 /***********************************************************************/
8 /* NAME = setjmp.h : ; */
10 /* FUNC = this module do the following functions ; */
15 /***********************************************************************/
19 typedef int jmp_buf[38];
20 typedef int jmp_buf_a
[54];
25 extern int setjmp(jmp_buf);
26 extern void longjmp(jmp_buf, int);
27 extern int setjmp_a(jmp_buf);
28 extern void longjmp_a(jmp_buf, int);
30 extern volatile int _errno
;