diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-11-03 15:30:05 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-11-03 15:30:05 +0000 |
commit | 173b12dd141390d28c0bb6dda6e62fea8255cfef (patch) | |
tree | 15008e4749374ab14350355c271844f0170aaa5d /usr.bin/make | |
parent | b27e69e524171848f22155d9ebdca4058d5759bd (diff) |
#ifdef stuff that is only used under #ifdef; ok espie
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/arch.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/make/arch.c b/usr.bin/make/arch.c index 8a5b60e9c0e..ecd054b68b6 100644 --- a/usr.bin/make/arch.c +++ b/usr.bin/make/arch.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: arch.c,v 1.72 2007/11/02 17:27:24 espie Exp $ */ +/* $OpenBSD: arch.c,v 1.73 2007/11/03 15:30:04 deraadt Exp $ */ /* $NetBSD: arch.c,v 1.17 1996/11/06 17:58:59 christos Exp $ */ /* @@ -170,9 +170,11 @@ struct SVR4namelist { size_t fnamesize; /* Size of the string table */ }; +#ifdef SVR4ARCHIVES static const char *svr4list = "Archive list"; static char *ArchSVR4Entry(struct SVR4namelist *, const char *, size_t, FILE *); +#endif static struct arch_member * new_arch_member(struct ar_hdr *hdr, const char *name) |