perror.c

来自「操作系统SunOS 4.1.3版本的源码」· C语言 代码 · 共 22 行

C
22
字号
#if !defined(lint) && defined(SCCSIDS)static	char sccsid[] = "@(#)perror.c 1.1 92/07/30 SMI";#endif/* * Print the error indicated * in the cerror cell. */#include <stdio.h>extern	int fflush();extern	void _perror();voidperror(s)	char *s;{	(void)fflush(stderr);	_perror(s);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?