diff options
author | wosch <wosch@FreeBSD.org> | 1996-07-02 23:04:50 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1996-07-02 23:04:50 +0000 |
commit | ce5be255785e84b66cc6ba78a07194e076b74ec4 (patch) | |
tree | 01adc9963b28b83ae1a39723fee3f1fe0efd30ba | |
parent | 5d78b2813d83b11b2a5429f807f4d4588cc51fa9 (diff) | |
download | FreeBSD-src-ce5be255785e84b66cc6ba78a07194e076b74ec4.zip FreeBSD-src-ce5be255785e84b66cc6ba78a07194e076b74ec4.tar.gz |
remove zopen, zopen is not part of libc.
-rw-r--r-- | include/stdio.h | 1 | ||||
-rw-r--r-- | usr.bin/compress/Makefile | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/stdio.h b/include/stdio.h index 9c4c37e..71d23d4 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -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 /* diff --git a/usr.bin/compress/Makefile b/usr.bin/compress/Makefile index 01c59bb..0f6f5dd 100644 --- a/usr.bin/compress/Makefile +++ b/usr.bin/compress/Makefile @@ -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> |