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/dev/grf_hy.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/hp300/dev/grf_hy.c')
-rw-r--r-- | sys/arch/hp300/dev/grf_hy.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/sys/arch/hp300/dev/grf_hy.c b/sys/arch/hp300/dev/grf_hy.c index 300d032aa0f..96939b98c80 100644 --- a/sys/arch/hp300/dev/grf_hy.c +++ b/sys/arch/hp300/dev/grf_hy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: grf_hy.c,v 1.7 2000/11/10 15:33:05 provos Exp $ */ +/* $OpenBSD: grf_hy.c,v 1.8 2002/03/14 01:26:30 millert Exp $ */ /* $NetBSD: grf_hy.c,v 1.9 1997/03/31 07:34:16 scottr Exp $ */ /* @@ -79,16 +79,16 @@ caddr_t badhyaddr = (caddr_t) -1; -int hy_init __P((struct grf_data *gp, int, caddr_t)); -int hy_mode __P((struct grf_data *gp, int, caddr_t)); -void hyper_ite_fontinit __P((struct ite_data *)); +int hy_init(struct grf_data *gp, int, caddr_t); +int hy_mode(struct grf_data *gp, int, caddr_t); +void hyper_ite_fontinit(struct ite_data *); -int hyper_dio_match __P((struct device *, void *, void *)); -void hyper_dio_attach __P((struct device *, struct device *, void *)); +int hyper_dio_match(struct device *, void *, void *); +void hyper_dio_attach(struct device *, struct device *, void *); -int hyper_console_scan __P((int, caddr_t, void *)); -void hypercnprobe __P((struct consdev *cp)); -void hypercninit __P((struct consdev *cp)); +int hyper_console_scan(int, caddr_t, void *); +void hypercnprobe(struct consdev *cp); +void hypercninit(struct consdev *cp); struct cfattach hyper_dio_ca = { sizeof(struct grfdev_softc), hyper_dio_match, hyper_dio_attach @@ -104,15 +104,15 @@ struct grfsw hyper_grfsw = { }; #if NITE > 0 -void hyper_init __P((struct ite_data *)); -void hyper_deinit __P((struct ite_data *)); -void hyper_int_fontinit __P((struct ite_data *)); -void hyper_putc __P((struct ite_data *, int, int, int, int)); -void hyper_cursor __P((struct ite_data *, int)); -void hyper_clear __P((struct ite_data *, int, int, int, int)); -void hyper_scroll __P((struct ite_data *, int, int, int, int)); -void hyper_windowmove __P((struct ite_data *, int, int, int, int, - int, int, int)); +void hyper_init(struct ite_data *); +void hyper_deinit(struct ite_data *); +void hyper_int_fontinit(struct ite_data *); +void hyper_putc(struct ite_data *, int, int, int, int); +void hyper_cursor(struct ite_data *, int); +void hyper_clear(struct ite_data *, int, int, int, int); +void hyper_scroll(struct ite_data *, int, int, int, int); +void hyper_windowmove(struct ite_data *, int, int, int, int, + int, int, int); /* Hyperion ite switch */ struct itesw hyper_itesw = { |