psignal.c
来自「操作系统SunOS 4.1.3版本的源码」· C语言 代码 · 共 23 行
C
23 行
#if !defined(lint) && defined(SCCSIDS)static char sccsid[] = "@(#)psignal.c 1.1 92/07/30 (C) 1983 SMI";#endif/* * Print the name of the signal indicated * along with the supplied message. */#include <stdio.h>extern int fflush();extern void _psignal();voidpsignal(sig, s) unsigned sig; char *s;{ (void)fflush(stderr); _psignal(sig, s);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?