summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorPer Fogelstrom <pefo@cvs.openbsd.org>1999-06-01 17:54:33 +0000
committerPer Fogelstrom <pefo@cvs.openbsd.org>1999-06-01 17:54:33 +0000
commit4250454a54849b9eebc218dc55bb385295511485 (patch)
treea738cd5f99db4f5bf4d1eaa31565a89588a35187 /usr.bin
parent4309307225f09098de013c97346c43afcb9edced (diff)
Fix some mips -> __mips__ stuff.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/make/arch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/arch.c b/usr.bin/make/arch.c
index f2bdc417796..81f75a9bc6b 100644
--- a/usr.bin/make/arch.c
+++ b/usr.bin/make/arch.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: arch.c,v 1.14 1998/12/05 00:06:26 espie Exp $ */
+/* $OpenBSD: arch.c,v 1.15 1999/06/01 17:54:31 pefo Exp $ */
/* $NetBSD: arch.c,v 1.17 1996/11/06 17:58:59 christos Exp $ */
/*
@@ -43,7 +43,7 @@
#if 0
static char sccsid[] = "@(#)arch.c 8.2 (Berkeley) 1/2/94";
#else
-static char rcsid[] = "$OpenBSD: arch.c,v 1.14 1998/12/05 00:06:26 espie Exp $";
+static char rcsid[] = "$OpenBSD: arch.c,v 1.15 1999/06/01 17:54:31 pefo Exp $";
#endif
#endif /* not lint */
@@ -134,7 +134,7 @@ static void ArchFree __P((ClientData));
static struct ar_hdr *ArchStatMember __P((char *, char *, Boolean));
static FILE *ArchFindMember __P((char *, char *, struct ar_hdr *, char *));
#if defined(__svr4__) || defined(__SVR4) || \
- (defined(__OpenBSD__) && defined(__mips)) || \
+ (defined(__OpenBSD__) && defined(__mips__)) || \
(defined(__OpenBSD__) && defined(__powerpc))
#define SVR4ARCHIVES
static int ArchSVR4Entry __P((Arch *, char *, size_t, FILE *));