setjmp.h
来自「仓储物流盘点机DT900源程序及编译环境。」· C头文件 代码 · 共 26 行
H
26 行
/*-------------------------------------------------------------------------*/
/* SH SERIES C Compiler Ver. 1.0 */
/* Copyright (c) 1992 Hitachi,Ltd.,Hitachi Software Engineering Co.,Ltd. */
/* Licensed material of Hitachi,Ltd.,Hitachi Software Engineering Co.,Ltd. */
/*-------------------------------------------------------------------------*/
/***********************************************************************/
/* SPEC; */
/* NAME = setjmp.h : ; */
/* */
/* FUNC = this module do the following functions ; */
/* */
/* CLAS = UNIT; */
/* */
/* END; */
/***********************************************************************/
/* D S01001SP */
typedef int jmp_buf[65];
extern int setjmp(jmp_buf);
extern void longjmp(jmp_buf, int);
extern volatile int _errno; /* C S01002SP */
#ifndef SEQERR
#define SEQERR 1108
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?