diff options
author | 2003-08-03 01:26:46 +0000 | |
---|---|---|
committer | 2003-08-03 01:26:46 +0000 | |
commit | 1eaf5d655df037bba6a3aff84a0f22fdb920dfcb (patch) | |
tree | fbb358a8b722c744b42a3cf414778397e8a5fcd7 | |
parent | A new, BSD licensed znew(1). Some suggestions from krw@ and millert@. (diff) | |
download | wireguard-openbsd-1eaf5d655df037bba6a3aff84a0f22fdb920dfcb.tar.xz wireguard-openbsd-1eaf5d655df037bba6a3aff84a0f22fdb920dfcb.zip |
protos
-rw-r--r-- | usr.bin/compress/zopen.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/compress/zopen.c b/usr.bin/compress/zopen.c index 058a9008350..d1a94da9cdb 100644 --- a/usr.bin/compress/zopen.c +++ b/usr.bin/compress/zopen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: zopen.c,v 1.13 2003/07/17 20:06:01 millert Exp $ */ +/* $OpenBSD: zopen.c,v 1.14 2003/08/03 01:26:46 deraadt Exp $ */ /* $NetBSD: zopen.c,v 1.5 1995/03/26 09:44:53 glass Exp $ */ /*- @@ -40,7 +40,7 @@ static char sccsid[] = "@(#)zopen.c 8.1 (Berkeley) 6/27/93"; #else const char z_rcsid[] = - "$OpenBSD: zopen.c,v 1.13 2003/07/17 20:06:01 millert Exp $"; + "$OpenBSD: zopen.c,v 1.14 2003/08/03 01:26:46 deraadt Exp $"; #endif /*- @@ -346,7 +346,7 @@ z_close(void *cookie, struct z_info *info) return (rval); } -int +static int zclose(void *cookie) { return z_close(cookie, NULL); |