2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\" may be used to endorse or promote products derived from this software
14 .\" without specific prior written permission.
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" From: @(#)err.3 8.1 (Berkeley) 6/9/93
49 .Nd formatted error messages
55 .Fn err "int eval" "const char *fmt" "..."
57 .Fn err_set_exit "void (*exitf)(int)"
59 .Fn err_set_file "void *vfp"
61 .Fn errc "int eval" "int code" "const char *fmt" "..."
63 .Fn errx "int eval" "const char *fmt" "..."
65 .Fn warn "const char *fmt" "..."
67 .Fn warnc "int code" "const char *fmt" "..."
69 .Fn warnx "const char *fmt" "..."
72 .Fn verr "int eval" "const char *fmt" "va_list args"
74 .Fn verrc "int eval" "int code" "const char *fmt" "va_list args"
76 .Fn verrx "int eval" "const char *fmt" "va_list args"
78 .Fn vwarn "const char *fmt" "va_list args"
80 .Fn vwarnc "int code" "const char *fmt" "va_list args"
82 .Fn vwarnx "const char *fmt" "va_list args"
88 family of functions display a formatted error message on the standard
89 error output, or on another file specified using the
92 In all cases, the last component of the program name, a colon character,
93 and a space are output.
96 argument is not NULL, the
98 -like formatted error message is output.
99 The output is terminated by a newline character.
111 functions append an error message obtained from
113 based on a supplied error code value or the global variable
115 preceded by another colon and space unless the
129 argument is used to look up the error message.
137 functions use the global variable
139 to look up the error message.
145 functions do not append an error message.
155 functions do not return, but exit with the value of the argument
157 It is recommended that the standard values defined in
159 be used for the value of
163 function can be used to specify a function which is called before
165 to perform any necessary cleanup; passing a null function pointer for
167 resets the hook to do nothing.
170 function sets the output stream used by the other functions.
173 argument must be either a pointer to an open stream
174 (possibly already converted to void *)
176 (in which case the output stream is set to standard error).
178 Display the current errno information string and exit:
179 .Bd -literal -offset indent
180 if ((p = malloc(size)) == NULL)
182 if ((fd = open(file_name, O_RDONLY, 0)) == -1)
183 err(EX_NOINPUT, "%s", file_name);
186 Display an error message and exit:
187 .Bd -literal -offset indent
188 if (tm.tm_hour < START_TIME)
189 errx(EX_DATAERR, "too early, wait until %s",
194 .Bd -literal -offset indent
195 if ((fd = open(raw_device, O_RDONLY, 0)) == -1)
196 warnx("%s: %s: trying the block device",
197 raw_device, strerror(errno));
198 if ((fd = open(block_device, O_RDONLY, 0)) == -1)
199 err(EX_OSFILE, "%s", block_device);
202 Warn of an error without using the global variable
204 .Bd -literal -offset indent
205 error = my_function(); /* returns a value from <errno.h> */
207 warnc(error, "my_function");
220 families of functions are
223 As such they should not be used in truly portable code.
226 or similar functions instead.
232 functions first appeared in
238 functions first appeared in
244 functions first appeared in