Remove __P().

This commit is contained in:
tsutsui 2007-12-29 16:48:03 +00:00
parent 55718e804e
commit 8021ef3f6c
3 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: leds.h,v 1.3 2005/12/11 12:17:18 christos Exp $ */
/* $NetBSD: leds.h,v 1.4 2007/12/29 16:48:03 tsutsui Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993
@ -84,6 +84,6 @@
#define LED_PULSE 0x10 /* heartbeat */
#if defined(_KERNEL) && !defined(_LOCORE)
void ledinit __P((void));
void ledcontrol __P((int, int, int));
void ledinit(void);
void ledcontrol(int, int, int);
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap_bootstrap.c,v 1.33 2007/10/17 19:54:24 garbled Exp $ */
/* $NetBSD: pmap_bootstrap.c,v 1.34 2007/12/29 16:48:03 tsutsui Exp $ */
/*
* Copyright (c) 1991, 1993
@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.33 2007/10/17 19:54:24 garbled Exp $");
__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.34 2007/12/29 16:48:03 tsutsui Exp $");
#include <sys/param.h>
#include <sys/proc.h>
@ -71,7 +71,7 @@ extern int protection_codes[];
extern int pmap_aliasmask;
#endif
void pmap_bootstrap __P((paddr_t, paddr_t));
void pmap_bootstrap(paddr_t, paddr_t);
/*
* Special purpose kernel virtual addresses, used for mapping

View File

@ -1,4 +1,4 @@
/* $NetBSD: inst.c,v 1.15 2005/12/24 22:45:35 perry Exp $ */
/* $NetBSD: inst.c,v 1.16 2007/12/29 16:48:03 tsutsui Exp $ */
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@ -108,7 +108,7 @@ int a2int(char *);
struct inst_command {
char *ic_cmd; /* command name */
char *ic_desc; /* command description */
void (*ic_func) __P((void)); /* handling function */
void (*ic_func)(void); /* handling function */
} inst_commands[] = {
{ "disklabel", "place partition map on disk", dsklabel },
{ "miniroot", "place miniroot on disk", miniroot },