diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-07-18 13:47:12 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-07-18 13:47:12 +0000 |
commit | a2e5a51e127edf86aac804e921fbe9cfc9a535bc (patch) | |
tree | 012e49d77b7df5af363f1b3acb0e839786f32033 /sys/arch/powerpc/include/pmap.h | |
parent | 74869e982d6cef07291c73c2fdb82f2a670637e4 (diff) |
Fix prototype that art missed...
Diffstat (limited to 'sys/arch/powerpc/include/pmap.h')
-rw-r--r-- | sys/arch/powerpc/include/pmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/pmap.h b/sys/arch/powerpc/include/pmap.h index 4d1f268427d..da674f91f9c 100644 --- a/sys/arch/powerpc/include/pmap.h +++ b/sys/arch/powerpc/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.14 2001/07/18 10:47:05 art Exp $ */ +/* $OpenBSD: pmap.h,v 1.15 2001/07/18 13:47:11 drahn Exp $ */ /* $NetBSD: pmap.h,v 1.1 1996/09/30 16:34:29 ws Exp $ */ /*- @@ -72,7 +72,7 @@ struct pmap { }; typedef struct pmap *pmap_t; -void ptemodify(vm_offset_t pa, u_int mask, u_int val); +boolean_t ptemodify(paddr_t pa, u_int mask, u_int val); #ifdef _KERNEL extern struct pmap kernel_pmap_; |