perror.c

来自「操作系统源代码」· C语言 代码 · 共 34 行

C
34
字号
/* * perror.c - print an error message on the standard error output *//* $Header: perror.c,v 1.1 89/05/30 13:31:30 eck Exp $ */#if	defined(_POSIX_SOURCE)#include	<sys/types.h>#endif#include	<stdio.h>#include	<errno.h>#include	<stdio.h>#include	<string.h>#include	"loc_incl.h"ssize_t _write(int d, const char *buf, size_t nbytes);voidperror(const char *s){	char *p;	int fd;	p = strerror(errno);	fd = fileno(stderr);	fflush(stdout);	fflush(stderr);	if (s && *s) {		_write(fd, s, strlen(s));		_write(fd, ": ", 2);	}	_write(fd, p, strlen(p));	_write(fd, "\n", 1);}

⌨️ 快捷键说明

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