diff options
author | Jason Peel <jsyn@cvs.openbsd.org> | 2002-08-09 20:26:46 +0000 |
---|---|---|
committer | Jason Peel <jsyn@cvs.openbsd.org> | 2002-08-09 20:26:46 +0000 |
commit | 54a23347d56b87c53dd8654f4cf7b36636058de4 (patch) | |
tree | 5e796e589a8555012d5b5da90fecaa1f0d667f78 /sys/arch/vax/stand/boot/consio.c | |
parent | 42a64f030f357b477574f94ce6ddfda32d9c8f4e (diff) |
Get rid of remaining __P usage (except for imported code);
ok millert@, rogue ok pjanzen@
Diffstat (limited to 'sys/arch/vax/stand/boot/consio.c')
-rw-r--r-- | sys/arch/vax/stand/boot/consio.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/vax/stand/boot/consio.c b/sys/arch/vax/stand/boot/consio.c index ddfb19c8c5b..6ff171106be 100644 --- a/sys/arch/vax/stand/boot/consio.c +++ b/sys/arch/vax/stand/boot/consio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: consio.c,v 1.4 2002/06/11 09:36:23 hugh Exp $ */ +/* $OpenBSD: consio.c,v 1.5 2002/08/09 20:26:45 jsyn Exp $ */ /* $NetBSD: consio.c,v 1.13 2002/05/24 21:40:59 ragge Exp $ */ /* * Copyright (c) 1994, 1998 Ludd, University of Lule}, Sweden. @@ -66,12 +66,12 @@ int rom_getc; /* ROM-address of get-routine */ unsigned char *ka630_conspage; /* Function that initializes things for KA630 ROM console I/O */ -void ka630_consinit __P((void)); +void ka630_consinit(void); /* Functions that use KA630 ROM for console I/O */ -void ka630_rom_putchar __P((int c)); -int ka630_rom_getchar __P((void)); -int ka630_rom_testchar __P((void)); +void ka630_rom_putchar(int c); +int ka630_rom_getchar(void); +int ka630_rom_testchar(void); /* Also added such a thing for KA53 - MK-991208 */ unsigned char *ka53_conspage; |