diff options
author | 2003-12-17 04:58:56 +0000 | |
---|---|---|
committer | 2003-12-17 04:58:56 +0000 | |
commit | 4532451dea3d8949aa615455a2910a22a9360864 (patch) | |
tree | 0ce138f2f03db4a49cd2746ef3daa46697df6ec3 | |
parent | Simply include the main libz Makefile instead of trying to roll our own. (diff) | |
download | wireguard-openbsd-4532451dea3d8949aa615455a2910a22a9360864.tar.xz wireguard-openbsd-4532451dea3d8949aa615455a2910a22a9360864.zip |
#include <lib/libsa/stand.h> instead of just <stand.h> so we can avoid
adding an extra -I for each libz Makefile. This is how the old kernel
libz was.
-rw-r--r-- | sys/lib/libz/zutil.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libz/zutil.h b/sys/lib/libz/zutil.h index ea9f5aa7ae1..c721fc43a65 100644 --- a/sys/lib/libz/zutil.h +++ b/sys/lib/libz/zutil.h @@ -1,4 +1,4 @@ -/* $OpenBSD: zutil.h,v 1.13 2003/12/16 23:57:48 millert Exp $ */ +/* $OpenBSD: zutil.h,v 1.14 2003/12/17 04:58:56 millert Exp $ */ /* zutil.h -- internal interface and configuration of the compression library * Copyright (C) 1995-2003 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h @@ -17,7 +17,7 @@ #include "zlib.h" #ifdef _STANDALONE -#include <stand.h> +#include <lib/libsa/stand.h> #else #ifdef STDC # include <stddef.h> |