3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * @(#)err.c 8.1 (Berkeley) 6/4/93
30 * $FreeBSD: src/lib/libc/gen/err.c,v 1.15 2008/04/03 20:36:44 imp Exp $
33 #include "namespace.h"
40 #include "un-namespace.h"
42 #include "libc_private.h"
44 static FILE *err_file
; /* file to use for error output */
45 static void (*err_exit
)(int);
48 * This is declared to take a `void *' so that the caller is not required
49 * to include <stdio.h> first. However, it is really a `FILE *', and the
50 * manual page documents it as such.
53 err_set_file(void *fp
)
62 err_set_exit(void (*ef
)(int))
67 void _err(int, const char *, ...) __printflike(2, 3);
70 _err(int eval
, const char *fmt
, ...)
74 verrc(eval
, errno
, fmt
, ap
);
78 __weak_reference(_err
, err
);
81 verr(int eval
, const char *fmt
, va_list ap
)
83 verrc(eval
, errno
, fmt
, ap
);
87 errc(int eval
, int code
, const char *fmt
, ...)
91 verrc(eval
, code
, fmt
, ap
);
96 verrc(int eval
, int code
, const char *fmt
, va_list ap
)
100 fprintf(err_file
, "%s: ", _getprogname());
102 vfprintf(err_file
, fmt
, ap
);
103 fprintf(err_file
, ": ");
105 fprintf(err_file
, "%s\n", strerror(code
));
112 errx(int eval
, const char *fmt
, ...)
116 verrx(eval
, fmt
, ap
);
121 verrx(int eval
, const char *fmt
, va_list ap
)
123 if (err_file
== NULL
)
125 fprintf(err_file
, "%s: ", _getprogname());
127 vfprintf(err_file
, fmt
, ap
);
128 fprintf(err_file
, "\n");
134 void _warn(const char *, ...) __printflike(1, 2);
137 _warn(const char *fmt
, ...)
141 vwarnc(errno
, fmt
, ap
);
145 __weak_reference(_warn
, warn
);
148 vwarn(const char *fmt
, va_list ap
)
150 vwarnc(errno
, fmt
, ap
);
154 warnc(int code
, const char *fmt
, ...)
158 vwarnc(code
, fmt
, ap
);
163 vwarnc(int code
, const char *fmt
, va_list ap
)
165 if (err_file
== NULL
)
167 fprintf(err_file
, "%s: ", _getprogname());
169 vfprintf(err_file
, fmt
, ap
);
170 fprintf(err_file
, ": ");
172 fprintf(err_file
, "%s\n", strerror(code
));
176 warnx(const char *fmt
, ...)
185 vwarnx(const char *fmt
, va_list ap
)
187 if (err_file
== NULL
)
189 fprintf(err_file
, "%s: ", _getprogname());
191 vfprintf(err_file
, fmt
, ap
);
192 fprintf(err_file
, "\n");