File:  [CSRG BSD Unix] / 43BSDReno / lib / libc / gen / perror.3
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Tue Apr 24 16:12:55 2018 UTC (8 years, 1 month ago) by root
Branches: MAIN, BSD
CVS tags: HEAD, BSD43reno
BSD 4.3reno

.\" Copyright (c) 1980 Regents of the University of California.
.\" All rights reserved.  The Berkeley software License Agreement
.\" specifies the terms and conditions for redistribution.
.\"
.\"	@(#)perror.3	6.4 (Berkeley) 6/24/90
.\"
.TH PERROR 3  "June 24, 1990"
.UC 4
.SH NAME
perror, strerror, sys_errlist, sys_nerr \- system error messages
.SH SYNOPSIS
.nf
.B perror(string)
.B char *string;
.PP
.B char *
.B strerror(errnum)
.B int errnum;
.PP
.B extern int errno, sys_nerr;
.B extern char *sys_errlist[];
.fi
.SH DESCRIPTION
.I Perror
produces a short error message on the standard error file
describing the last error encountered during a call
to the system from a C program.  If
.I string
is non-NULL, it is printed, followed by a colon, followed by a space,
followed by the message and a new-line.  Otherwise, just the
message and the new-line are printed.  Most usefully, the argument
string is the name of the program which incurred the error.
The error number is taken from the external variable
.I errno
(see
.IR intro (2)),
which is set when errors occur but not cleared when
non-erroneous calls are made.
.PP
To simplify variant formatting of messages, the
.I strerror
function returns a pointer to the error message string mapped
to the error number
.IR errnum .
.PP
The message strings can be accessed directly using the external
character array
.IR sys_errlist .
.I Sys_nerr
is the total number of messages in the array.  The use of these
variables is deprecated;
.I strerror
should be used instead.
.SH "SEE ALSO"
intro(2)

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.