diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
commit | d522f6eb0324008023fed0be4d046f3fc51b0356 (patch) | |
tree | 9ecf8345e3c3ff77a81ef2a20d84c6497533e804 /usr.bin/vi/cl | |
parent | 1b433a7e5b43fe0dec72e100525e31299629c117 (diff) |
Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
Diffstat (limited to 'usr.bin/vi/cl')
-rw-r--r-- | usr.bin/vi/cl/cl_main.c | 4 | ||||
-rw-r--r-- | usr.bin/vi/cl/cl_read.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/vi/cl/cl_main.c b/usr.bin/vi/cl/cl_main.c index 362f994b329..1be43e2bea7 100644 --- a/usr.bin/vi/cl/cl_main.c +++ b/usr.bin/vi/cl/cl_main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cl_main.c,v 1.12 2002/02/16 21:27:56 millert Exp $ */ +/* $OpenBSD: cl_main.c,v 1.13 2002/02/17 19:42:33 millert Exp $ */ /*- * Copyright (c) 1993, 1994 @@ -43,7 +43,7 @@ static void cl_func_std(GS *); static CL_PRIVATE *cl_init(GS *); static GS *gs_init(char *); static void perr(char *, char *); -static int setsig __P((int, struct sigaction *, void (*)(int))); +static int setsig(int, struct sigaction *, void (*)(int)); static void sig_end(GS *); static void term_init(char *, char *); diff --git a/usr.bin/vi/cl/cl_read.c b/usr.bin/vi/cl/cl_read.c index cef45baa5ba..ab1bc97b0b7 100644 --- a/usr.bin/vi/cl/cl_read.c +++ b/usr.bin/vi/cl/cl_read.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cl_read.c,v 1.10 2002/02/16 21:27:56 millert Exp $ */ +/* $OpenBSD: cl_read.c,v 1.11 2002/02/17 19:42:33 millert Exp $ */ /*- * Copyright (c) 1993, 1994 @@ -37,8 +37,8 @@ static const char sccsid[] = "@(#)cl_read.c 10.15 (Berkeley) 9/24/96"; #include "../ex/script.h" #include "cl.h" -static input_t cl_read __P((SCR *, - u_int32_t, CHAR_T *, size_t, int *, struct timeval *)); +static input_t cl_read(SCR *, + u_int32_t, CHAR_T *, size_t, int *, struct timeval *); static int cl_resize(SCR *, size_t, size_t); /* |