From e9aa96b9ad9bda835b672480308b9ef7ed3a01e9 Mon Sep 17 00:00:00 2001 From: christos Date: Sat, 10 Feb 1996 00:13:25 +0000 Subject: [PATCH] Follow Charles' advise about the location of some of the prototypes. --- sys/sys/conf.h | 5 ++++- sys/sys/cpu.h | 6 +----- sys/sys/systm.h | 4 +++- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/sys/sys/conf.h b/sys/sys/conf.h index 3dbe5aee1a31..6a3b097d81f6 100644 --- a/sys/sys/conf.h +++ b/sys/sys/conf.h @@ -1,4 +1,4 @@ -/* $NetBSD: conf.h,v 1.28 1995/08/14 05:05:55 cgd Exp $ */ +/* $NetBSD: conf.h,v 1.29 1996/02/10 00:13:25 christos Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -339,4 +339,7 @@ struct swdevt { #ifdef _KERNEL extern struct swdevt swdevt[]; + +int chrtoblk __P((dev_t)); +int iskmemdev __P((dev_t)); #endif diff --git a/sys/sys/cpu.h b/sys/sys/cpu.h index 17cdc248b58b..f8e4f044b8fe 100644 --- a/sys/sys/cpu.h +++ b/sys/sys/cpu.h @@ -1,4 +1,4 @@ -/* $NetBSD: cpu.h,v 1.1 1996/02/09 18:25:02 christos Exp $ */ +/* $NetBSD: cpu.h,v 1.2 1996/02/10 00:13:27 christos Exp $ */ /* * Copyright (c) 1996 Christos Zoulas. All rights reserved. @@ -39,12 +39,8 @@ __BEGIN_DECLS void consinit __P((void)); void boot __P((int)); -int fuswintr __P((caddr_t)); -int suswintr __P((caddr_t, u_int)); void pagemove __P((caddr_t, caddr_t, size_t)); void delay __P((unsigned)); -int chrtoblk __P((dev_t)); -int iskmemdev __P((dev_t)); void cpu_exit __P((struct proc *)); void cpu_startup __P((void)); diff --git a/sys/sys/systm.h b/sys/sys/systm.h index e1c9c42c0885..48a868339f8d 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -1,4 +1,4 @@ -/* $NetBSD: systm.h,v 1.39 1996/02/09 18:25:42 christos Exp $ */ +/* $NetBSD: systm.h,v 1.40 1996/02/10 00:13:28 christos Exp $ */ /*- * Copyright (c) 1982, 1988, 1991, 1993 @@ -159,6 +159,8 @@ long fuword __P((void *base)); long fuiword __P((void *base)); int suword __P((void *base, long word)); int suiword __P((void *base, long word)); +int fuswintr __P((caddr_t)); +int suswintr __P((caddr_t, u_int)); struct timeval; int hzto __P((struct timeval *tv));