NetBSD/lib/libc/gen/_errx.c

31 lines
577 B
C
Raw Normal View History

2005-09-13 05:44:08 +04:00
/* $NetBSD: _errx.c,v 1.11 2005/09/13 01:44:09 christos Exp $ */
1998-01-09 06:15:09 +03:00
/*
* J.T. Conklin, December 12, 1994
* Public Domain
*/
#include <sys/cdefs.h>
2005-06-12 09:34:34 +04:00
#if defined(LIBC_SCCS) && !defined(lint)
2005-09-13 05:44:08 +04:00
__RCSID("$NetBSD: _errx.c,v 1.11 2005/09/13 01:44:09 christos Exp $");
2005-06-12 09:34:34 +04:00
#endif /* LIBC_SCCS and not lint */
2005-09-13 05:44:08 +04:00
#if defined(__indr_reference)
__indr_reference(_errx, errx)
#else
2005-09-13 05:44:08 +04:00
#include <stdarg.h>
2005-09-13 05:44:08 +04:00
__dead void _verrx(int eval, const char *, _BSD_VA_LIST_);
__dead void
errx(int eval, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
_verrx(eval, fmt, ap);
va_end(ap);
}
#endif