3c9575aadc
This patch add the proper .if/.else/.endif to the Makefiles, add places I forgot #ifdef __minix and remove newlines.
28 lines
551 B
C
28 lines
551 B
C
/* $NetBSD: _verr.c,v 1.10 2005/09/13 01:44:09 christos Exp $ */
|
|
|
|
/*
|
|
* J.T. Conklin, December 12, 1994
|
|
* Public Domain
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
|
__RCSID("$NetBSD: _verr.c,v 1.10 2005/09/13 01:44:09 christos Exp $");
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
#if defined(__indr_reference)
|
|
__indr_reference(_verr, verr)
|
|
#else
|
|
#ifdef __minix
|
|
#include <stdarg.h>
|
|
#endif
|
|
|
|
__dead void _verr(int, const char *, _BSD_VA_LIST_);
|
|
|
|
void
|
|
verr(int eval, const char *fmt, _BSD_VA_LIST_ ap)
|
|
{
|
|
_verr(eval, fmt, ap);
|
|
}
|
|
|
|
#endif
|