diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-16 18:06:40 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-16 18:06:40 +0000 |
commit | fb8c15ee92697fc0f91f87745979df76ac142993 (patch) | |
tree | be1f73a67f4eadbbfbc0fe6b695580154084271c /sys/uvm | |
parent | ce0ff7927a99fc5b15e5b824c5efec878793615a (diff) |
Don't prototype functions if they are really just macros.
Diffstat (limited to 'sys/uvm')
-rw-r--r-- | sys/uvm/uvm_pmap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/uvm/uvm_pmap.h b/sys/uvm/uvm_pmap.h index 5e9617bc624..4180c47ca45 100644 --- a/sys/uvm/uvm_pmap.h +++ b/sys/uvm/uvm_pmap.h @@ -144,7 +144,9 @@ void pmap_protect __P((pmap_t, vaddr_t, vaddr_t, vm_prot_t)); void pmap_reference __P((pmap_t)); void pmap_remove __P((pmap_t, vaddr_t, vaddr_t)); +#if !defined(pmap_update) void pmap_update __P((void)); +#endif void pmap_zero_page __P((paddr_t)); void pmap_virtual_space __P((vaddr_t *, vaddr_t *)); |