diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-12-17 04:58:57 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-12-17 04:58:57 +0000 |
commit | 8327ff40d23e139a619f21e0feafd11cd2815c66 (patch) | |
tree | 93663b6ac590df29237abbb475c21d4b00f5a880 /sys/lib/libz/zutil.h | |
parent | fae01b2d4d08b4e289bc69f703854854cd9d8803 (diff) |
#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.
Diffstat (limited to 'sys/lib/libz/zutil.h')
-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> |