diff options
author | Erwin Lansing <erwin@FreeBSD.org> | 2003-09-27 17:25:55 +0000 |
---|---|---|
committer | Erwin Lansing <erwin@FreeBSD.org> | 2003-09-27 17:25:55 +0000 |
commit | 2507552841c13cd15a511d9359a36971c3b5376b (patch) | |
tree | 02e7f9d28b4238a69d7bde7ea6ad2869c4deae64 /security/digest/files/rmd160hl.c | |
parent | Update to 1.1.1 (diff) |
- update sources and Makefile to latest NetBSD release
(usage bug fixed, misc. improvements)
- grab maintainership
PR: 56656
Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Diffstat (limited to 'security/digest/files/rmd160hl.c')
-rw-r--r-- | security/digest/files/rmd160hl.c | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/security/digest/files/rmd160hl.c b/security/digest/files/rmd160hl.c index 12918f14b8b7..81c5589fe4d4 100644 --- a/security/digest/files/rmd160hl.c +++ b/security/digest/files/rmd160hl.c @@ -1,4 +1,4 @@ -/* $NetBSD: rmd160hl.c,v 1.1.1.1 2001/03/06 11:21:05 agc Exp $ */ +/* $NetBSD: rmd160hl.c,v 1.3 2002/12/21 04:06:15 schmonz Exp $ */ /* rmd160hl.c * ---------------------------------------------------------------------------- @@ -11,22 +11,32 @@ * from OpenBSD: rmd160hl.c,v 1.2 1999/08/17 09:13:12 millert Exp $ */ -#include <sys/cdefs.h> +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include <digest-types.h> + #ifndef lint -__RCSID("$NetBSD: rmd160hl.c,v 1.1.1.1 2001/03/06 11:21:05 agc Exp $"); +__RCSID("$NetBSD: rmd160hl.c,v 1.3 2002/12/21 04:06:15 schmonz Exp $"); #endif /* not lint */ -#include <sys/types.h> /* #include "namespace.h" */ #include <assert.h> +#ifdef HAVE_ERRNO_H #include <errno.h> +#endif +#ifdef HAVE_FCNTL_H #include <fcntl.h> +#endif #include <rmd160.h> #include <stdio.h> #include <stdlib.h> +#ifdef HAVE_UNISTD_H #include <unistd.h> +#endif #ifndef _DIAGASSERT #define _DIAGASSERT(cond) assert(cond) |