/src/sbin/savecore/ |
zopen.c | 1 /* $NetBSD: zopen.c,v 1.4 2017/01/10 04:42:20 kamil Exp $ */ 9 __RCSID("$NetBSD: zopen.c,v 1.4 2017/01/10 04:42:20 kamil Exp $"); 15 FILE *zopen(const char *fname, const char *mode); 31 zopen(const char *fname, const char *mode) function in typeref:typename:FILE *
|
Makefile | 5 SRCS= savecore.c zopen.c
|
savecore.c | 74 extern FILE *zopen(const char *fname, const char *mode); 679 if ((fp = zopen(path, gzmode)) == NULL) { 757 if ((fp = zopen(path, gzmode)) == NULL) {
|
/src/usr.bin/compress/ |
Makefile | 7 SRCS= compress.c zopen.c
|
compress.c | 66 extern FILE *zopen(const char *fname, const char *mode, int bits); 235 if ((ofp = zopen(out, "w", bits)) == NULL) { 317 if ((ifp = zopen(in, "r", bits)) == NULL) {
|
zopen.c | 1 /* $NetBSD: zopen.c,v 1.16 2022/03/23 11:08:28 andvar Exp $ */ 38 static char sccsid[] = "@(#)zopen.c 8.1 (Berkeley) 6/27/93"; 40 static char rcsid[] = "$NetBSD: zopen.c,v 1.16 2022/03/23 11:08:28 andvar Exp $"; 58 * zopen(filename, mode, bits) 205 FILE *zopen(const char *, const char *, int); 654 zopen(const char *fname, const char *mode, int bits) function in typeref:typename:FILE *
|