__P(()) -> __P((void)) on several prototypes to fix some gcc warnings.

This commit is contained in:
mark 1997-01-26 01:25:42 +00:00
parent db2c833016
commit bf4360262c
2 changed files with 6 additions and 6 deletions
sys/arch/arm32/include

@ -1,4 +1,4 @@
/* $NetBSD: psl.h,v 1.5 1996/10/15 00:26:46 mark Exp $ */
/* $NetBSD: psl.h,v 1.6 1997/01/26 01:25:43 mark Exp $ */
/*
* Copyright (c) 1995 Mark Brinicombe.
@ -76,9 +76,9 @@ int raisespl __P((int));
int lowerspl __P((int));
int splx __P((int));
void setsoftnet __P(());
void setsoftast __P(());
void setsoftclock __P(());
void setsoftnet __P((void));
void setsoftast __P((void));
void setsoftclock __P((void));
void setsoftintr __P((u_int intrmask));
extern int current_spl_level;

@ -1,4 +1,4 @@
/* $NetBSD: vidc.h,v 1.4 1996/10/14 23:05:34 mark Exp $ */
/* $NetBSD: vidc.h,v 1.5 1997/01/26 01:25:42 mark Exp $ */
/*
* Copyright (c) 1994,1995 Mark Brinicombe.
@ -193,7 +193,7 @@ struct vidc_state {
extern int vidc_write __P((u_int /*reg*/, int /*value*/));
extern void vidc_setstate __P((struct vidc_state */*vidc*/));
extern void vidc_setpalette __P((struct vidc_state */*vidc*/));
extern void vidc_stdpalette __P(());
extern void vidc_stdpalette __P((void));
extern int vidc_col __P((int /*red*/, int /*green*/, int /*blue*/));
extern struct vidc_state vidc_current[];
#endif /* _KERNEL */