summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2001-09-04 15:19:17 +0000
committerJason Wright <jason@cvs.openbsd.org>2001-09-04 15:19:17 +0000
commit41914dac217e9923a469158ca02636a37a77c63e (patch)
treeb533bf342ad5c9c194b37eb70414efa66087af66
parentc8fe4c1bc1269881cad61e793f0a5c96b7bee4dc (diff)
Don't explicitly size the intrhand array in the extern declaration (from netbsd)
-rw-r--r--sys/arch/sparc64/include/cpu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/include/cpu.h b/sys/arch/sparc64/include/cpu.h
index 6ed2bc0bd46..4e2a60e9ab0 100644
--- a/sys/arch/sparc64/include/cpu.h
+++ b/sys/arch/sparc64/include/cpu.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.h,v 1.4 2001/08/19 05:12:47 art Exp $ */
+/* $OpenBSD: cpu.h,v 1.5 2001/09/04 15:19:16 jason Exp $ */
/* $NetBSD: cpu.h,v 1.28 2001/06/14 22:56:58 thorpej Exp $ */
/*
@@ -245,7 +245,7 @@ struct intrhand {
volatile u_int64_t *ih_map; /* Interrupt map reg */
volatile u_int64_t *ih_clr; /* clear interrupt reg */
};
-extern struct intrhand *intrhand[15];
+extern struct intrhand *intrhand[];
extern struct intrhand *intrlev[MAXINTNUM];
void intr_establish __P((int level, struct intrhand *));