diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-09-13 19:12:22 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-09-13 19:12:22 +0000 |
commit | ff1c5ba83673b986fe647971ca67440ea1931c98 (patch) | |
tree | fb0f5c4db64d2bed736a490ad249a68d80cce78f /sys | |
parent | 6117dda4ad302e6bb544c409d75148b3ae58187a (diff) |
Oops, fix ivec[] prototype.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mvme88k/include/locore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/include/locore.h b/sys/arch/mvme88k/include/locore.h index ee7a7ca8161..a9485069234 100644 --- a/sys/arch/mvme88k/include/locore.h +++ b/sys/arch/mvme88k/include/locore.h @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.h,v 1.27 2005/04/27 14:09:45 miod Exp $ */ +/* $OpenBSD: locore.h,v 1.28 2005/09/13 19:12:21 miod Exp $ */ #ifndef _MACHINE_LOCORE_H_ #define _MACHINE_LOCORE_H_ @@ -24,7 +24,7 @@ unsigned getipl(void); int intr_findvec(int, int, int); void myetheraddr(u_char *cp); -extern volatile u_int8_t *ivec[8]; +extern volatile u_int8_t *ivec[]; /* eh.S */ |