Expand PMF_FN_* macros.
[netbsd-mini2440.git] / lib / libc / gen / _warnx.c
blobeca7411d1c48c297321a9e302e321b441d9fe322
1 /* $NetBSD: _warnx.c,v 1.9 2005/07/16 18:01:38 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: _warnx.c,v 1.9 2005/07/16 18:01:38 christos Exp $");
11 #endif /* LIBC_SCCS and not lint */
13 #if defined(__indr_reference)
14 __indr_reference(_warnx, warnx)
15 #else
17 #include <stdarg.h>
19 void _vwarnx(const char *, _BSD_VA_LIST_);
21 void
22 warnx(const char *fmt, ...)
24 va_list ap;
26 va_start(ap, fmt);
27 _vwarnx(eval, fmt, ap);
28 va_end(ap);
31 #endif