Follow Charles' advise about the location of some of the prototypes.

This commit is contained in:
christos 1996-02-10 00:13:25 +00:00
parent 647dfa216e
commit e9aa96b9ad
3 changed files with 8 additions and 7 deletions

View File

@ -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 * Copyright (c) 1990, 1993
@ -339,4 +339,7 @@ struct swdevt {
#ifdef _KERNEL #ifdef _KERNEL
extern struct swdevt swdevt[]; extern struct swdevt swdevt[];
int chrtoblk __P((dev_t));
int iskmemdev __P((dev_t));
#endif #endif

View File

@ -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. * Copyright (c) 1996 Christos Zoulas. All rights reserved.
@ -39,12 +39,8 @@ __BEGIN_DECLS
void consinit __P((void)); void consinit __P((void));
void boot __P((int)); 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 pagemove __P((caddr_t, caddr_t, size_t));
void delay __P((unsigned)); void delay __P((unsigned));
int chrtoblk __P((dev_t));
int iskmemdev __P((dev_t));
void cpu_exit __P((struct proc *)); void cpu_exit __P((struct proc *));
void cpu_startup __P((void)); void cpu_startup __P((void));

View File

@ -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 * Copyright (c) 1982, 1988, 1991, 1993
@ -159,6 +159,8 @@ long fuword __P((void *base));
long fuiword __P((void *base)); long fuiword __P((void *base));
int suword __P((void *base, long word)); int suword __P((void *base, long word));
int suiword __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; struct timeval;
int hzto __P((struct timeval *tv)); int hzto __P((struct timeval *tv));