diff --git a/sys/arch/m68k/include/cpu.h b/sys/arch/m68k/include/cpu.h index 41e4aec22367..896600ad794f 100644 --- a/sys/arch/m68k/include/cpu.h +++ b/sys/arch/m68k/include/cpu.h @@ -1,4 +1,4 @@ -/* $NetBSD: cpu.h,v 1.3 1997/02/02 06:56:57 thorpej Exp $ */ +/* $NetBSD: cpu.h,v 1.4 1997/04/09 19:21:06 thorpej Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -190,11 +190,15 @@ extern int mmutype; /* MMU on this host */ #ifdef _KERNEL void copypage __P((void *fromaddr, void *toaddr)); void zeropage __P((void *addr)); + #ifdef MAPPEDCOPY int mappedcopyin __P((void *fromp, void *top, size_t count)); int mappedcopyout __P((void *fromp, void *top, size_t count)); extern u_int mappedcopysize; #endif /* MAPPEDCOPY */ + +struct trapframe; +void regdump __P((struct trapframe *, int)); #endif /* _KERNEL */ #endif /* _M68K_CPU_H_ */ diff --git a/sys/arch/m68k/include/m68k.h b/sys/arch/m68k/include/m68k.h index 507fb1741f9f..ae8b0633757e 100644 --- a/sys/arch/m68k/include/m68k.h +++ b/sys/arch/m68k/include/m68k.h @@ -1,4 +1,4 @@ -/* $NetBSD: m68k.h,v 1.3 1997/02/02 06:56:57 thorpej Exp $ */ +/* $NetBSD: m68k.h,v 1.4 1997/04/09 19:21:06 thorpej Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -190,11 +190,15 @@ extern int mmutype; /* MMU on this host */ #ifdef _KERNEL void copypage __P((void *fromaddr, void *toaddr)); void zeropage __P((void *addr)); + #ifdef MAPPEDCOPY int mappedcopyin __P((void *fromp, void *top, size_t count)); int mappedcopyout __P((void *fromp, void *top, size_t count)); extern u_int mappedcopysize; #endif /* MAPPEDCOPY */ + +struct trapframe; +void regdump __P((struct trapframe *, int)); #endif /* _KERNEL */ #endif /* _M68K_CPU_H_ */