NetBSD/lib/libc/gen/_verrx.c

26 lines
516 B
C
Raw Normal View History

2005-09-13 05:44:08 +04:00
/* $NetBSD: _verrx.c,v 1.10 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: _verrx.c,v 1.10 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(_verrx, verrx)
#else
2005-09-13 05:44:08 +04:00
__dead void _verrx(int, const char *, _BSD_VA_LIST_);
void
verrx(int eval, const char *fmt, _BSD_VA_LIST_ ap)
{
_verrx(eval, fmt, ap);
}
#endif