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.
24 lines
492 B
C
24 lines
492 B
C
/* $NetBSD: md2hl.c,v 1.5 2005/06/12 05:34:34 lukem Exp $ */
|
|
|
|
/*
|
|
* 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.5 2005/06/12 05:34:34 lukem Exp $");
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
#define MDALGORITHM MD2
|
|
|
|
#include "namespace.h"
|
|
#include <md2.h>
|
|
|
|
#if HAVE_NBTOOL_CONFIG_H
|
|
#include "nbtool_config.h"
|
|
#endif
|
|
|
|
#if !HAVE_MD2_H
|
|
#include "mdXhl.c"
|
|
#endif
|