xref: /openbsd-src/lib/libc/gen/errx.c (revision 9b9d2a55a62c8e82206c25f94fcc7f4e2765250e)
1*9b9d2a55Sguenther /*	$OpenBSD: errx.c,v 1.11 2015/08/31 02:53:57 guenther Exp $ */
2f3bae140Sderaadt /*-
3f3bae140Sderaadt  * Copyright (c) 1993
4f3bae140Sderaadt  *	The Regents of the University of California.  All rights reserved.
5f3bae140Sderaadt  *
6f3bae140Sderaadt  * Redistribution and use in source and binary forms, with or without
7f3bae140Sderaadt  * modification, are permitted provided that the following conditions
8f3bae140Sderaadt  * are met:
9f3bae140Sderaadt  * 1. Redistributions of source code must retain the above copyright
10f3bae140Sderaadt  *    notice, this list of conditions and the following disclaimer.
11f3bae140Sderaadt  * 2. Redistributions in binary form must reproduce the above copyright
12f3bae140Sderaadt  *    notice, this list of conditions and the following disclaimer in the
13f3bae140Sderaadt  *    documentation and/or other materials provided with the distribution.
146580fee3Smillert  * 3. Neither the name of the University nor the names of its contributors
15f3bae140Sderaadt  *    may be used to endorse or promote products derived from this software
16f3bae140Sderaadt  *    without specific prior written permission.
17f3bae140Sderaadt  *
18f3bae140Sderaadt  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19f3bae140Sderaadt  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20f3bae140Sderaadt  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21f3bae140Sderaadt  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22f3bae140Sderaadt  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23f3bae140Sderaadt  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24f3bae140Sderaadt  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25f3bae140Sderaadt  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26f3bae140Sderaadt  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27f3bae140Sderaadt  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28f3bae140Sderaadt  * SUCH DAMAGE.
29f3bae140Sderaadt  */
30f3bae140Sderaadt 
31f3bae140Sderaadt #include <err.h>
32f3bae140Sderaadt #include <stdarg.h>
33f3bae140Sderaadt 
34f3bae140Sderaadt __dead void
errx(int eval,const char * fmt,...)35*9b9d2a55Sguenther errx(int eval, const char *fmt, ...)
36f3bae140Sderaadt {
37f3bae140Sderaadt 	va_list ap;
38f3bae140Sderaadt 
39e7beb4a7Smillert 	va_start(ap, fmt);
40*9b9d2a55Sguenther 	verrx(eval, fmt, ap);
41f3bae140Sderaadt 	va_end(ap);
42f3bae140Sderaadt }
43*9b9d2a55Sguenther DEF_WEAK(errx);
44