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.
		
			
				
	
	
		
			18 lines
		
	
	
		
			431 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			431 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* $NetBSD: md2hl.c,v 1.4 2008/04/13 02:04:31 dholland Exp $ */
 | 
						|
 | 
						|
/*
 | 
						|
 * Derived from code written by Jason R. Thorpe <thorpej@NetBSD.org>,
 | 
						|
 * April 29, 1997.
 | 
						|
 * Public domain.
 | 
						|
 */
 | 
						|
 | 
						|
#include <sys/cdefs.h>
 | 
						|
#if defined(LIBC_SCCS) && !defined(lint)
 | 
						|
__RCSID("$NetBSD: md2hl.c,v 1.4 2008/04/13 02:04:31 dholland Exp $");
 | 
						|
#endif /* LIBC_SCCS and not lint */
 | 
						|
 | 
						|
#define	HASH_ALGORITHM	MD2
 | 
						|
#define HASH_INCLUDE	<md2.h>
 | 
						|
 | 
						|
#include "../hashhl.c"
 |