diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-02-14 20:07:47 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-02-14 20:07:47 +0000 |
commit | 2a34de06e66d328c5c3ab085002ef1110d6d1702 (patch) | |
tree | cee34c9acfe0d54e41244ea4b78ab813e09cd969 /sys/lib/libsa | |
parent | 5369c62df0e379d35354c05e62b5e7bd14400b09 (diff) |
place a bin-patcheable z_verbose here for -DDEBUG
Diffstat (limited to 'sys/lib/libsa')
-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 */ |