diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-03-18 01:47:54 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-03-18 01:47:54 +0000 |
commit | 1ad6b20a7ba1b27924caa3ac1e659aca04041ef2 (patch) | |
tree | fb30253ad83403a20d67782cfecc0320917df23c | |
parent | 14064a8440b37b22ee0fcd409e14c96743f40fb2 (diff) |
Correct prototype for guarded_access().
-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 446d44b78a1..13688c4295a 100644 --- a/sys/arch/mvme88k/include/locore.h +++ b/sys/arch/mvme88k/include/locore.h @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.h,v 1.8 2001/03/16 00:05:25 miod Exp $ */ +/* $OpenBSD: locore.h,v 1.9 2001/03/18 01:47:53 miod Exp $ */ #ifndef _MACHINE_LOCORE_H_ #define _MACHINE_LOCORE_H_ @@ -39,7 +39,7 @@ int db_are_interrupts_disabled __P((void)); #if defined(MVME187) || defined(MVME188) int guarded_access __P((volatile unsigned char *address, - unsigned len, unsigned *vec)); + unsigned len, u_char *vec)); #endif |