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/dev/wscons/wsemul_sun.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/wscons/wsemul_sun.c')
-rw-r--r-- | sys/dev/wscons/wsemul_sun.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sys/dev/wscons/wsemul_sun.c b/sys/dev/wscons/wsemul_sun.c index c851e625a70..c726f75459a 100644 --- a/sys/dev/wscons/wsemul_sun.c +++ b/sys/dev/wscons/wsemul_sun.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wsemul_sun.c,v 1.3 2001/04/14 04:48:00 aaron Exp $ */ +/* $OpenBSD: wsemul_sun.c,v 1.4 2002/03/14 01:27:03 millert Exp $ */ /* $NetBSD: wsemul_sun.c,v 1.11 2000/01/05 11:19:36 drochner Exp $ */ /* @@ -47,15 +47,15 @@ #include <dev/wscons/wsksymdef.h> #include <dev/wscons/ascii.h> -void *wsemul_sun_cnattach __P((const struct wsscreen_descr *, void *, - int, int, long)); -void *wsemul_sun_attach __P((int console, const struct wsscreen_descr *, - void *, int, int, void *, long)); -void wsemul_sun_output __P((void *cookie, const u_char *data, u_int count, - int)); -int wsemul_sun_translate __P((void *cookie, keysym_t, char **)); -void wsemul_sun_detach __P((void *cookie, u_int *crowp, u_int *ccolp)); -void wsemul_sun_resetop __P((void *, enum wsemul_resetops)); +void *wsemul_sun_cnattach(const struct wsscreen_descr *, void *, + int, int, long); +void *wsemul_sun_attach(int console, const struct wsscreen_descr *, + void *, int, int, void *, long); +void wsemul_sun_output(void *cookie, const u_char *data, u_int count, + int); +int wsemul_sun_translate(void *cookie, keysym_t, char **); +void wsemul_sun_detach(void *cookie, u_int *crowp, u_int *ccolp); +void wsemul_sun_resetop(void *, enum wsemul_resetops); const struct wsemul_ops wsemul_sun_ops = { "sun", @@ -95,11 +95,11 @@ struct wsemul_sun_emuldata { #endif }; -u_int wsemul_sun_output_normal __P((struct wsemul_sun_emuldata *, u_char, - int)); -u_int wsemul_sun_output_haveesc __P((struct wsemul_sun_emuldata *, u_char)); -u_int wsemul_sun_output_control __P((struct wsemul_sun_emuldata *, u_char)); -void wsemul_sun_control __P((struct wsemul_sun_emuldata *, u_char)); +u_int wsemul_sun_output_normal(struct wsemul_sun_emuldata *, u_char, + int); +u_int wsemul_sun_output_haveesc(struct wsemul_sun_emuldata *, u_char); +u_int wsemul_sun_output_control(struct wsemul_sun_emuldata *, u_char); +void wsemul_sun_control(struct wsemul_sun_emuldata *, u_char); struct wsemul_sun_emuldata wsemul_sun_console_emuldata; |