diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-08-13 15:40:08 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-08-13 15:40:08 +0000 |
commit | e2da463c59e6c4d4f919c72f56bb7d1b85759069 (patch) | |
tree | 39411542340a8987f3f6c3f146ad8140fbbabcc1 /security/digest/files/rmd160hl.c | |
parent | Update to version 0.9.4 (diff) |
Synchronize with NetBSD. (20010807)
Notes
Notes:
svn path=/head/; revision=46197
Diffstat (limited to 'security/digest/files/rmd160hl.c')
-rw-r--r-- | security/digest/files/rmd160hl.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/security/digest/files/rmd160hl.c b/security/digest/files/rmd160hl.c index 29e4517ea9a9..12918f14b8b7 100644 --- a/security/digest/files/rmd160hl.c +++ b/security/digest/files/rmd160hl.c @@ -1,5 +1,4 @@ /* $NetBSD: rmd160hl.c,v 1.1.1.1 2001/03/06 11:21:05 agc Exp $ */ -/* $FreeBSD$ */ /* rmd160hl.c * ---------------------------------------------------------------------------- @@ -24,7 +23,7 @@ __RCSID("$NetBSD: rmd160hl.c,v 1.1.1.1 2001/03/06 11:21:05 agc Exp $"); #include <assert.h> #include <errno.h> #include <fcntl.h> -#include "rmd160.h" +#include <rmd160.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> @@ -33,11 +32,13 @@ __RCSID("$NetBSD: rmd160hl.c,v 1.1.1.1 2001/03/06 11:21:05 agc Exp $"); #define _DIAGASSERT(cond) assert(cond) #endif +#if 0 #if defined(__weak_alias) __weak_alias(RMD160End,_RMD160End) __weak_alias(RMD160File,_RMD160File) __weak_alias(RMD160Data,_RMD160Data) #endif +#endif char * RMD160End(RMD160_CTX *ctx, char *buf) |