diff options
-rw-r--r-- | libexec/ld.so/util.h | 4 | ||||
-rw-r--r-- | sys/arch/alpha/tc/scc.c | 4 | ||||
-rw-r--r-- | sys/arch/sparc64/dev/lpt_ebus.c | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/libexec/ld.so/util.h b/libexec/ld.so/util.h index 0d2310bf58f..73b022d8cbd 100644 --- a/libexec/ld.so/util.h +++ b/libexec/ld.so/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.4 2002/05/24 18:37:38 drahn Exp $ */ +/* $OpenBSD: util.h,v 1.5 2002/05/27 20:07:06 deraadt Exp $ */ /* * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> @@ -36,7 +36,7 @@ #ifndef __DL_UTIL_H__ #define __DL_UTIL_H__ -int _dl_write __P((int, const char *, int)); +int _dl_write(int, const char *, int); void *_dl_malloc(const int size); void _dl_free(void *); char *_dl_strdup(const char *); diff --git a/sys/arch/alpha/tc/scc.c b/sys/arch/alpha/tc/scc.c index b1734b53296..9ec4912a9c7 100644 --- a/sys/arch/alpha/tc/scc.c +++ b/sys/arch/alpha/tc/scc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scc.c,v 1.15 2002/05/02 22:56:06 miod Exp $ */ +/* $OpenBSD: scc.c,v 1.16 2002/05/27 20:07:06 deraadt Exp $ */ /* $NetBSD: scc.c,v 1.58 2002/03/17 19:40:27 atatat Exp $ */ /* @@ -332,7 +332,7 @@ sccattach(parent, self, aux) if (cntr == 0) tty_attach(tp); pdp->p_arg = (long)tp; - pdp->p_fcn = (void (*)__P((struct tty*)))0; + pdp->p_fcn = (void (*)(struct tty*))0; tp->t_dev = (dev_t)((sc->sc_dv.dv_unit << 1) | cntr); pdp++; } diff --git a/sys/arch/sparc64/dev/lpt_ebus.c b/sys/arch/sparc64/dev/lpt_ebus.c index d9df4c9b286..dff766c61ca 100644 --- a/sys/arch/sparc64/dev/lpt_ebus.c +++ b/sys/arch/sparc64/dev/lpt_ebus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lpt_ebus.c,v 1.4 2002/04/16 19:49:06 jason Exp $ */ +/* $OpenBSD: lpt_ebus.c,v 1.5 2002/05/27 20:07:06 deraadt Exp $ */ /* $NetBSD: lpt_ebus.c,v 1.8 2002/03/01 11:51:00 martin Exp $ */ /* @@ -51,8 +51,8 @@ struct lpt_ebus_softc { bus_space_handle_t sc_ctrl; }; -int lpt_ebus_match __P((struct device *, void *, void *)); -void lpt_ebus_attach __P((struct device *, struct device *, void *)); +int lpt_ebus_match(struct device *, void *, void *); +void lpt_ebus_attach(struct device *, struct device *, void *); struct cfattach lpt_ebus_ca = { sizeof(struct lpt_ebus_softc), lpt_ebus_match, lpt_ebus_attach |