libc, libutil: remove compat hacks
[minix.git] / lib / libc / gen / _verrx.c
blob5af3d3ca5561eea761b7bbf5cd44cafba91c699a
1 /* $NetBSD: _verrx.c,v 1.10 2005/09/13 01:44:09 christos Exp $ */
3 /*
4 * J.T. Conklin, December 12, 1994
5 * Public Domain
6 */
8 #include <sys/cdefs.h>
9 #if defined(LIBC_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: _verrx.c,v 1.10 2005/09/13 01:44:09 christos Exp $");
11 #endif /* LIBC_SCCS and not lint */
13 #if defined(__indr_reference)
14 __indr_reference(_verrx, verrx)
15 #else
16 #ifdef __minix
17 #include <stdarg.h>
18 #endif
20 __dead void _verrx(int, const char *, _BSD_VA_LIST_);
22 void
23 verrx(int eval, const char *fmt, _BSD_VA_LIST_ ap)
25 _verrx(eval, fmt, ap);
28 #endif