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.
		
			
				
	
	
		
			13 lines
		
	
	
		
			204 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			204 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* $NetBSD: Lint_bswap32.c,v 1.2 2001/02/27 19:04:40 cgd Exp $ */
 | 
						|
/* Written by Manuel Bouyer. Public Domain */
 | 
						|
 | 
						|
#include <sys/types.h>
 | 
						|
 | 
						|
/*ARGSUSED*/
 | 
						|
u_int32_t
 | 
						|
bswap32(b32)
 | 
						|
	u_int32_t b32;
 | 
						|
{
 | 
						|
	return 0;
 | 
						|
}
 |