remove needless externs in front of function prototypes
This commit is contained in:
parent
510d65b241
commit
c8057dc287
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: apmvar.h,v 1.11 2001/03/24 02:07:55 christos Exp $ */
|
||||
/* $NetBSD: apmvar.h,v 1.12 2001/05/21 04:47:35 perry Exp $ */
|
||||
/*-
|
||||
* Copyright (c) 1995 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
|
@ -304,13 +304,13 @@ struct apm_attach_args {
|
|||
#ifdef _KERNEL
|
||||
extern struct apm_connect_info apminfo; /* in locore */
|
||||
extern int apmpresent;
|
||||
extern int apmcall __P((int function, struct bioscallregs *regs));
|
||||
extern void bioscall __P((int function, struct bioscallregs *regs));
|
||||
extern void apm_cpu_busy __P((void));
|
||||
extern void apm_cpu_idle __P((void));
|
||||
extern void apminit __P((void));
|
||||
int apmcall __P((int function, struct bioscallregs *regs));
|
||||
void bioscall __P((int function, struct bioscallregs *regs));
|
||||
void apm_cpu_busy __P((void));
|
||||
void apm_cpu_idle __P((void));
|
||||
void apminit __P((void));
|
||||
int apm_set_powstate __P((u_int devid, u_int powstate));
|
||||
extern int apm_busprobe __P((void));
|
||||
int apm_busprobe __P((void));
|
||||
#endif /* _KERNEL */
|
||||
#endif /* _LOCORE */
|
||||
#endif /* __i386_apm_h__ */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: float.h,v 1.10 1998/02/18 09:22:02 mycroft Exp $ */
|
||||
/* $NetBSD: float.h,v 1.11 2001/05/21 04:47:35 perry Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1989 Regents of the University of California.
|
||||
|
@ -41,7 +41,7 @@
|
|||
#include <sys/cdefs.h>
|
||||
|
||||
__BEGIN_DECLS
|
||||
extern int __flt_rounds __P((void));
|
||||
int __flt_rounds __P((void));
|
||||
__END_DECLS
|
||||
|
||||
#define FLT_RADIX 2 /* b */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: intr.h,v 1.20 2001/04/30 01:17:30 lukem Exp $ */
|
||||
/* $NetBSD: intr.h,v 1.21 2001/05/21 04:47:35 perry Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998, 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -73,7 +73,7 @@
|
|||
volatile int cpl, ipending, astpending;
|
||||
int imask[NIPL];
|
||||
|
||||
extern void Xspllower __P((void));
|
||||
void Xspllower __P((void));
|
||||
|
||||
static __inline int splraise __P((int));
|
||||
static __inline void spllower __P((int));
|
||||
|
|
Loading…
Reference in New Issue