catcherr.c
来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C语言 代码 · 共 16 行
C
16 行
/* Copyright (c) 1979 Regents of the University of California */static char sccsid[] = "@(#)CATCHERR.c 1.2 4/1/81";#include "h00vars.h"CATCHERR(err, todo) long err; /* error to be caught */ struct formalrtn todo; /* procedure to call to catch error */{ if (todo.fbn == 1) _entry[err].fentryaddr = todo.fentryaddr; else fputs("procedure not at level 1", stderr);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?