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.
16 lines
340 B
C
16 lines
340 B
C
/* $NetBSD */
|
|
|
|
/*
|
|
* Derived from code written by Jason R. Thorpe <thorpej@NetBSD.org>,
|
|
* May 20, 2009.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__RCSID("$NetBSD: sha224hl.c,v 1.1 2009/05/26 08:04:12 joerg Exp $");
|
|
|
|
#define HASH_ALGORITHM SHA224
|
|
#define HASH_FNPREFIX SHA224_
|
|
#define HASH_INCLUDE <sys/sha2.h>
|
|
|
|
#include "../hashhl.c"
|