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/hppa/dev/pdc.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/hppa/dev/pdc.c')
-rw-r--r-- | sys/arch/hppa/dev/pdc.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/arch/hppa/dev/pdc.c b/sys/arch/hppa/dev/pdc.c index 91f5ce305ea..1c10c234214 100644 --- a/sys/arch/hppa/dev/pdc.c +++ b/sys/arch/hppa/dev/pdc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pdc.c,v 1.22 2002/03/06 23:06:23 miod Exp $ */ +/* $OpenBSD: pdc.c,v 1.23 2002/03/14 01:26:31 millert Exp $ */ /* * Copyright (c) 1998-2002 Michael Shalayeff @@ -59,8 +59,8 @@ pz_device_t *pz_kbd, *pz_cons; hppa_hpa_t conaddr; int conunit; -int pdcmatch __P((struct device *, void *, void*)); -void pdcattach __P((struct device *, struct device *, void *)); +int pdcmatch(struct device *, void *, void*); +void pdcattach(struct device *, struct device *, void *); struct cfattach pdc_ca = { sizeof(pdcsoftc_t), pdcmatch, pdcattach @@ -70,10 +70,10 @@ struct cfdriver pdc_cd = { NULL, "pdc", DV_DULL }; -void pdcstart __P((struct tty *tp)); -void pdctimeout __P((void *v)); -int pdcparam __P((struct tty *tp, struct termios *)); -int pdccnlookc __P((dev_t dev, int *cp)); +void pdcstart(struct tty *tp); +void pdctimeout(void *v); +int pdcparam(struct tty *tp, struct termios *); +int pdccnlookc(dev_t dev, int *cp); /* serial console speed table */ static int pdc_speeds[] = { |