diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/arch/hp300/include/autoconf.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/hp300/include/autoconf.h')
-rw-r--r-- | sys/arch/hp300/include/autoconf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hp300/include/autoconf.h b/sys/arch/hp300/include/autoconf.h index 038c42d50f0..b21ee54e212 100644 --- a/sys/arch/hp300/include/autoconf.h +++ b/sys/arch/hp300/include/autoconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.h,v 1.6 2001/09/01 05:48:18 jason Exp $ */ +/* $OpenBSD: autoconf.h,v 1.7 2002/03/14 01:26:31 millert Exp $ */ /* $NetBSD: autoconf.h,v 1.4 1997/04/01 03:03:56 scottr Exp $ */ /*- @@ -44,8 +44,8 @@ extern caddr_t conaddr; /* KVA of console device */ extern int convasize; /* size of mapping at conaddr */ extern int conforced; /* console has been forced */ -void hp300_cninit __P((void)); +void hp300_cninit(void); void console_scan __P((int (*)(int, caddr_t, void *), void *)); -caddr_t iomap __P((caddr_t, int)); -void iounmap __P((caddr_t, int)); +caddr_t iomap(caddr_t, int); +void iounmap(caddr_t, int); #endif /* _KERNEL */ |