 b6cbf7203b
			
		
	
	
		b6cbf7203b
		
	
	
	
	
		
			
			This patch imports the unmodified current version of NetBSD libc. The NetBSD includes are in /nbsd_include, while the libc code itself is split between lib/nbsd_libc and common/lib/libc.
		
			
				
	
	
		
			31 lines
		
	
	
		
			570 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			570 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*	$NetBSD: _err.c,v 1.11 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: _err.c,v 1.11 2005/09/13 01:44:09 christos Exp $");
 | |
| #endif /* LIBC_SCCS and not lint */
 | |
| 
 | |
| #if defined(__indr_reference)
 | |
| __indr_reference(_err, err)
 | |
| #else
 | |
| 
 | |
| #include <stdarg.h>
 | |
| 
 | |
| __dead void _verr(int eval, const char *, _BSD_VA_LIST_);
 | |
| 
 | |
| __dead void
 | |
| err(int eval, const char *fmt, ...)
 | |
| {
 | |
| 	va_list ap;
 | |
| 
 | |
| 	va_start(ap, fmt);
 | |
| 	_verr(eval, fmt, ap);
 | |
| 	va_end(ap);
 | |
| }
 | |
| #endif
 |