summaryrefslogtreecommitdiff
path: root/security/digest/files/md5c.c
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2001-08-13 15:40:08 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2001-08-13 15:40:08 +0000
commite2da463c59e6c4d4f919c72f56bb7d1b85759069 (patch)
tree39411542340a8987f3f6c3f146ad8140fbbabcc1 /security/digest/files/md5c.c
parentUpdate to version 0.9.4 (diff)
Synchronize with NetBSD. (20010807)
Notes
Notes: svn path=/head/; revision=46197
Diffstat (limited to 'security/digest/files/md5c.c')
-rw-r--r--security/digest/files/md5c.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/security/digest/files/md5c.c b/security/digest/files/md5c.c
index 78ed92c5b5cd..7a07a49bf9c0 100644
--- a/security/digest/files/md5c.c
+++ b/security/digest/files/md5c.c
@@ -1,5 +1,4 @@
/* $NetBSD: md5c.c,v 1.1.1.1 2001/03/06 11:21:05 agc Exp $ */
-/* $FreeBSD$ */
/*
* This file is derived from the RSA Data Security, Inc. MD5 Message-Digest
@@ -30,6 +29,8 @@
* documentation and/or software.
*/
+#include <sys/cdefs.h> /* hfpkg */
+
#if defined(_KERNEL) || defined(_STANDALONE)
#include <lib/libkern/libkern.h>
#include <sys/param.h>
@@ -40,7 +41,7 @@
#include <sys/types.h>
#include <assert.h>
#include <string.h>
-#include "md5.h"
+#include <md5.h>
#endif /* _KERNEL || _STANDALONE */
#define ZEROIZE(d, l) memset((d), 0, (l))