* Updating common/lib * Updating lib/csu * Updating lib/libc * Updating libexec/ld.elf_so * Corrected test on __minix in featuretest to actually follow the meaning of the comment. * Cleaned up _REENTRANT-related defintions. * Disabled -D_REENTRANT for libfetch * Removing some unneeded __NBSD_LIBC defines and tests Change-Id: Ic1394baef74d11b9f86b312f5ff4bbc3cbf72ce2
		
			
				
	
	
		
			35 lines
		
	
	
		
			577 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			577 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*	$NetBSD: _warn.c,v 1.11 2011/07/17 20:54:34 joerg Exp $	*/
 | 
						|
 | 
						|
/*
 | 
						|
 * J.T. Conklin, December 12, 1994
 | 
						|
 * Public Domain
 | 
						|
 */
 | 
						|
 | 
						|
#include <sys/cdefs.h>
 | 
						|
#if defined(LIBC_SCCS) && !defined(lint)
 | 
						|
__RCSID("$NetBSD: _warn.c,v 1.11 2011/07/17 20:54:34 joerg Exp $");
 | 
						|
#endif /* LIBC_SCCS and not lint */
 | 
						|
 | 
						|
#if defined(__indr_reference)
 | 
						|
__indr_reference(_warn, warn)
 | 
						|
#else
 | 
						|
 | 
						|
#include <stdarg.h>
 | 
						|
 | 
						|
void _vwarn(const char *, va_list);
 | 
						|
 | 
						|
void
 | 
						|
warn(const char *fmt, ...)
 | 
						|
{
 | 
						|
	va_list ap;
 | 
						|
 | 
						|
	va_start(ap, fmt);
 | 
						|
#ifdef __minix
 | 
						|
	_vwarn(fmt, ap);
 | 
						|
#else
 | 
						|
	_vwarn(eval, fmt, ap);
 | 
						|
#endif
 | 
						|
	va_end(ap);
 | 
						|
}
 | 
						|
#endif
 |