diff options
author | Hugh Graham <hugh@cvs.openbsd.org> | 2001-08-20 02:45:23 +0000 |
---|---|---|
committer | Hugh Graham <hugh@cvs.openbsd.org> | 2001-08-20 02:45:23 +0000 |
commit | d9bf3f8295bf4b2983561258d7e4e682174b9b27 (patch) | |
tree | fc9f22810ec6ab75b6a7d4a405535684432c17a2 | |
parent | b96be2bd048ecbb6066170b0f55f916b9af7b80c (diff) |
Move param.h before systm.h so vax macros are picked up properly.
-rw-r--r-- | sys/crypto/deflate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/crypto/deflate.c b/sys/crypto/deflate.c index 0a93890f1eb..73d8689465a 100644 --- a/sys/crypto/deflate.c +++ b/sys/crypto/deflate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: deflate.c,v 1.2 2001/07/05 17:52:59 deraadt Exp $ */ +/* $OpenBSD: deflate.c,v 1.3 2001/08/20 02:45:22 hugh Exp $ */ /* * Copyright (c) 2001 Jean-Jacques Bernard-Gundol (jj@wabbitt.org) @@ -34,8 +34,8 @@ #include <sys/types.h> #include <sys/malloc.h> -#include <sys/systm.h> #include <sys/param.h> +#include <sys/systm.h> #include <net/zlib.h> #include <crypto/deflate.h> |