diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-02-13 22:14:02 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-02-13 22:14:02 +0000 |
commit | d7fa5fca0ff0386bb6f3bcda381e752e499d33f8 (patch) | |
tree | 41426b6e9fffb2183a0ff9f154002d83ca4c0c2f | |
parent | 7a120be57a5d552312877eec6e1782f80238dcac (diff) |
prototypes
-rw-r--r-- | sys/arch/sun3/include/cpu.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sys/arch/sun3/include/cpu.h b/sys/arch/sun3/include/cpu.h index 1a512e62670..d595dd50b37 100644 --- a/sys/arch/sun3/include/cpu.h +++ b/sys/arch/sun3/include/cpu.h @@ -168,6 +168,27 @@ extern unsigned char cpu_machine_id; #define IC_CLEAR (IC_CLR|IC_ENABLE) +/* autoconf.c */ +void configure __P((void)); + +/* dma.c */ +long dvma_kvtopa __P((long, int)); + +/* machdep.c */ +void dumpconf __P((void)); + +/* locore.s */ +short fusword __P((u_short *)); +int susword __P((u_short *t, u_short)); + +struct pcb; +void savectx __P((struct pcb *)); +void switch_exit __P((struct proc *)); +void proc_trampoline __P((void)); + +/* trap.c */ +void child_return __P((struct proc *)); + #endif /* _KERNEL */ /* |