diff options
author | 2000-11-08 15:26:40 +0000 | |
---|---|---|
committer | 2000-11-08 15:26:40 +0000 | |
commit | 1e0b2ae5be3fbbb31daceca614a9c74450fa9df3 (patch) | |
tree | 9f29165d765245eb8992c2e58f1755ba37e2aae0 | |
parent | allocate le_iomem in le_ioasic_attach instead of MD code, (diff) | |
download | wireguard-openbsd-1e0b2ae5be3fbbb31daceca614a9c74450fa9df3.tar.xz wireguard-openbsd-1e0b2ae5be3fbbb31daceca614a9c74450fa9df3.zip |
Don't include sys/systm.h if we include stand.h.
-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. */ |