setjmperr.c
来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C语言 代码 · 共 26 行
C
26 行
#ifndef lintstatic char *sccsid = "@(#)setjmperr.c 4.1 (ULTRIX) 7/3/90";#endif not lint/* ------------------------------------------------------------------ *//* | Copyright Unpublished, MIPS Computer Systems, Inc. All Rights | *//* | Reserved. This software contains proprietary and confidential | *//* | information of MIPS and its suppliers. Use, disclosure or | *//* | reproduction is prohibited without the prior express written | *//* | consent of MIPS. | *//* ------------------------------------------------------------------ *//* $Header: setjmperr.c,v 1.1 87/02/16 11:17:37 dce Exp $ */#define ERRMSG "longjmp botch\n"/* * This routine is called from longjmp() when an error occurs. * Programs that wish to exit gracefully from this error may * write their own versions. * If this routine returns, the program is aborted. */longjmperror(){ write(2, ERRMSG, sizeof(ERRMSG));}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?