summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorart <art@openbsd.org>2001-11-06 02:55:51 +0000
committerart <art@openbsd.org>2001-11-06 02:55:51 +0000
commit4d4249c72d9a89b90e9fecba7f06aa687a4d247c (patch)
tree887054331bf0a05b3c59e66b5aa7a84ea7d5b59e
parentNo need for those prototypes here. (diff)
downloadwireguard-openbsd-4d4249c72d9a89b90e9fecba7f06aa687a4d247c.tar.xz
wireguard-openbsd-4d4249c72d9a89b90e9fecba7f06aa687a4d247c.zip
Need to prototype pmap_pinit and pmap_release here.
(although they are leftovers from an earlier bad time, the macppc decided that it's a good idea to use them.)
-rw-r--r--sys/arch/powerpc/include/pmap.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/powerpc/include/pmap.h b/sys/arch/powerpc/include/pmap.h
index e8794dabcf0..363f4524663 100644
--- a/sys/arch/powerpc/include/pmap.h
+++ b/sys/arch/powerpc/include/pmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.h,v 1.20 2001/09/18 13:59:23 drahn Exp $ */
+/* $OpenBSD: pmap.h,v 1.21 2001/11/06 02:55:51 art Exp $ */
/* $NetBSD: pmap.h,v 1.1 1996/09/30 16:34:29 ws Exp $ */
/*-
@@ -107,6 +107,9 @@ int ptebits(paddr_t pa, int bit);
void pmap_bootstrap __P((u_int kernelstart, u_int kernelend));
+void pmap_pinit __P((struct pmap *));
+void pmap_release __P((struct pmap *));
+
void pmap_real_memory __P((vm_offset_t *start, vm_size_t *size));
void switchexit __P((struct proc *));