diff options
author | 2001-08-20 02:45:22 +0000 | |
---|---|---|
committer | 2001-08-20 02:45:22 +0000 | |
commit | 74a55e4ab1e5642cf61bc5ff058e051babfd353b (patch) | |
tree | 3fcb473b3a33ba810c2f3c571c53163ed4cd1da3 | |
parent | cope with sa_len < sizeof(struct sockaddr). (diff) | |
download | wireguard-openbsd-74a55e4ab1e5642cf61bc5ff058e051babfd353b.tar.xz wireguard-openbsd-74a55e4ab1e5642cf61bc5ff058e051babfd353b.zip |
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> |