diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-16 21:28:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-16 21:28:12 +0000 |
commit | 6d57a1a176004a7d8fc009cdcf760098f86e3263 (patch) | |
tree | ee423c619fad03813234b9362694a17f3a638f0b /sbin/wsconsctl/keysym.c | |
parent | c707cb295fc3cac8d8feb343e949e0dcf71b8476 (diff) |
Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
Diffstat (limited to 'sbin/wsconsctl/keysym.c')
-rw-r--r-- | sbin/wsconsctl/keysym.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sbin/wsconsctl/keysym.c b/sbin/wsconsctl/keysym.c index 36123d9d69a..c41c921c22d 100644 --- a/sbin/wsconsctl/keysym.c +++ b/sbin/wsconsctl/keysym.c @@ -1,4 +1,4 @@ -/* $OpenBSD: keysym.c,v 1.1 2000/07/01 23:52:45 mickey Exp $ */ +/* $OpenBSD: keysym.c,v 1.2 2002/02/16 21:27:38 millert Exp $ */ /* $NetBSD: keysym.c,v 1.3 1999/02/08 11:08:23 hannken Exp $ */ /*- @@ -87,12 +87,12 @@ static const u_char latin1_to_upper[256] = { 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0x00, /* f */ }; -static int qcmp_name __P((const void *, const void *)); -static int qcmp_ksym __P((const void *, const void *)); -static int bcmp_name __P((const void *, const void *)); -static int bcmp_ksym __P((const void *, const void *)); +static int qcmp_name(const void *, const void *); +static int qcmp_ksym(const void *, const void *); +static int bcmp_name(const void *, const void *); +static int bcmp_ksym(const void *, const void *); -static void sort_ksym_tab __P((void)); +static void sort_ksym_tab(void); static int qcmp_name(a, b) |