diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2000-11-08 15:26:41 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2000-11-08 15:26:41 +0000 |
commit | 2489fcaf0d39fa6096d3ff350981a0a2ad788f07 (patch) | |
tree | 785373c01f1f61f41e797eb5a83bdcf234f3f90f /sys/lib/libkern | |
parent | 2da88799653f15d9e98bbc13cf4c70a38feee300 (diff) |
Don't include sys/systm.h if we include stand.h.
Diffstat (limited to 'sys/lib/libkern')
-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. */ |