diff options
Diffstat (limited to 'security/digest/files/md5c.c')
-rw-r--r-- | security/digest/files/md5c.c | 5 |
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)) |