remove zopen, zopen is not part of libc.

This commit is contained in:
Wolfram Schneider 1996-07-02 23:04:50 +00:00
parent bb9656377b
commit ad7076c992
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=16920
2 changed files with 3 additions and 1 deletions

View File

@ -298,7 +298,6 @@ int vasprintf __P((char **, const char *, _BSD_VA_LIST_));
int vsnprintf __P((char *, size_t, const char *, _BSD_VA_LIST_));
int vscanf __P((const char *, _BSD_VA_LIST_));
int vsscanf __P((const char *, const char *, _BSD_VA_LIST_));
FILE *zopen __P((const char *, const char *, int));
__END_DECLS
/*

View File

@ -5,4 +5,7 @@ SRCS= compress.c zopen.c
LINKS= ${BINDIR}/compress ${BINDIR}/uncompress
MLINKS= compress.1 uncompress.1
# XXX zopen is not part of libc
# MAN3=zopen.3
.include <bsd.prog.mk>