diff options
Diffstat (limited to 'sys/lib')
-rw-r--r-- | sys/lib/libkern/md5.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libkern/md5.c b/sys/lib/libkern/md5.c index 0540e2388d6..564c4a9895e 100644 --- a/sys/lib/libkern/md5.c +++ b/sys/lib/libkern/md5.c @@ -1,4 +1,4 @@ -/* $OpenBSD: md5.c,v 1.6 1997/06/06 17:48:48 grr Exp $ */ +/* $OpenBSD: md5.c,v 1.7 2000/11/08 15:26:40 art Exp $ */ /* * The rest of the code is derived from MD5C.C by RSADSI. Minor cosmetic @@ -38,12 +38,12 @@ documentation and/or software. */ #include <sys/param.h> -#include <sys/systm.h> #include <sys/md5k.h> #ifdef _STANDALONE #include <stand.h> +#else +#include <sys/systm.h> #endif - /* Constants for MD5Transform routine. */ |