diff options
author | 1999-02-14 20:07:46 +0000 | |
---|---|---|
committer | 1999-02-14 20:07:46 +0000 | |
commit | 5d02ce0ce2b7b192ead391aa73ae85632065066e (patch) | |
tree | 7536ee71b7520f9e826aac19841421e21f69c095 | |
parent | make z_error be a panic (diff) | |
download | wireguard-openbsd-5d02ce0ce2b7b192ead391aa73ae85632065066e.tar.xz wireguard-openbsd-5d02ce0ce2b7b192ead391aa73ae85632065066e.zip |
place a bin-patcheable z_verbose here for -DDEBUG
-rw-r--r-- | sys/lib/libsa/cread.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/lib/libsa/cread.c b/sys/lib/libsa/cread.c index d75c3ec6e38..90bee49cfd3 100644 --- a/sys/lib/libsa/cread.c +++ b/sys/lib/libsa/cread.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cread.c,v 1.7 1999/01/25 19:28:38 mickey Exp $ */ +/* $OpenBSD: cread.c,v 1.8 1999/02/14 20:07:46 mickey Exp $ */ /* $NetBSD: cread.c,v 1.2 1997/02/04 18:38:20 thorpej Exp $ */ /* @@ -79,6 +79,10 @@ static struct sd { int transparent; /* 1 if input file is not a .gz file */ } *ss[SOPEN_MAX]; +#ifdef DEBUG +int z_verbose = 0; +#endif + /* * compression utilities */ |