NetBSD/lib/libc/gen/_vwarnx.c

26 lines
495 B
C
Raw Normal View History

2005-09-13 05:44:08 +04:00
/* $NetBSD: _vwarnx.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: _vwarnx.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(_vwarnx, vwarnx)
#else
2005-09-13 05:44:08 +04:00
void _vwarnx(const char *, _BSD_VA_LIST_);
void
vwarnx(const char *fmt, _BSD_VA_LIST_ ap)
{
_vwarnx(fmt, ap);
}
#endif