summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1996-05-04 21:27:35 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1996-05-04 21:27:35 +0000
commit0df31376fa9cb314b2f9434f567e2556b2c77344 (patch)
treec43253266ed02fa2768d19d51ea2710329552e74
parent1741a58ba7b8e31fd18b893b976231cec4cc2307 (diff)
it compiles now.
-rw-r--r--sys/arch/hp300/hp300/vm_machdep.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/hp300/hp300/vm_machdep.c b/sys/arch/hp300/hp300/vm_machdep.c
index 94a388da4d4..25000809270 100644
--- a/sys/arch/hp300/hp300/vm_machdep.c
+++ b/sys/arch/hp300/hp300/vm_machdep.c
@@ -103,10 +103,10 @@ cpu_fork(p1, p2)
void
cpu_set_kpc(p, pc)
struct proc *p;
- u_long pc;
+ void (*pc)(struct proc *);
{
- p->p_addr->u_pcb.pcb_regs[6] = pc; /* A2 */
+ p->p_addr->u_pcb.pcb_regs[6] = (u_long)pc; /* A2 */
}
/*
@@ -200,9 +200,10 @@ cpu_coredump(p, vp, cred, chdr)
* Both addresses are assumed to reside in the Sysmap,
* and size must be a multiple of CLSIZE.
*/
+void
pagemove(from, to, size)
register caddr_t from, to;
- int size;
+ size_t size;
{
register vm_offset_t pa;