1/*	$NetBSD: _vwarnx.c,v 1.10 2005/09/13 01:44:09 christos Exp $	*/
2
3/*
4 * J.T. Conklin, December 12, 1994
5 * Public Domain
6 */
7
8#include <sys/cdefs.h>
9#if defined(LIBC_SCCS) && !defined(lint)
10__RCSID("$NetBSD: _vwarnx.c,v 1.10 2005/09/13 01:44:09 christos Exp $");
11#endif /* LIBC_SCCS and not lint */
12
13#include <stdarg.h>
14
15#if defined(__indr_reference)
16__indr_reference(_vwarnx, vwarnx)
17#else
18
19void _vwarnx(const char *, va_list);
20
21void
22vwarnx(const char *fmt, va_list ap)
23{
24	_vwarnx(fmt, ap);
25}
26
27#endif
28