diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/arch/mac68k/include/pmap.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/mac68k/include/pmap.h')
-rw-r--r-- | sys/arch/mac68k/include/pmap.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mac68k/include/pmap.h b/sys/arch/mac68k/include/pmap.h index 8c896fea08b..e823fea106c 100644 --- a/sys/arch/mac68k/include/pmap.h +++ b/sys/arch/mac68k/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.16 2002/01/10 22:25:40 miod Exp $ */ +/* $OpenBSD: pmap.h,v 1.17 2002/03/14 01:26:35 millert Exp $ */ #ifndef _MAC68K_PMAP_H_ #define _MAC68K_PMAP_H_ @@ -7,9 +7,9 @@ #ifdef _KERNEL -void mac68k_set_pte __P((vaddr_t va, paddr_t pge)); +void mac68k_set_pte(vaddr_t va, paddr_t pge); -void pmap_init_md __P((void)); +void pmap_init_md(void); #define PMAP_INIT_MD() pmap_init_md() #endif /* _KERNEL */ |