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/common/search.c | |
parent | 1b433a7e5b43fe0dec72e100525e31299629c117 (diff) |
Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
Diffstat (limited to 'usr.bin/vi/common/search.c')
-rw-r--r-- | usr.bin/vi/common/search.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.bin/vi/common/search.c b/usr.bin/vi/common/search.c index 72effe783ad..d6251effab8 100644 --- a/usr.bin/vi/common/search.c +++ b/usr.bin/vi/common/search.c @@ -1,4 +1,4 @@ -/* $OpenBSD: search.c,v 1.6 2002/02/16 21:27:57 millert Exp $ */ +/* $OpenBSD: search.c,v 1.7 2002/02/17 19:42:34 millert Exp $ */ /*- * Copyright (c) 1992, 1993, 1994 @@ -142,8 +142,7 @@ prev: if (sp->re == NULL) { * f_search -- * Do a forward search. * - * PUBLIC: int f_search __P((SCR *, - * PUBLIC: MARK *, MARK *, char *, size_t, char **, u_int)); + * PUBLIC: int f_search(SCR *, MARK *, MARK *, char *, size_t, char **, u_int); */ int f_search(sp, fm, rm, ptrn, plen, eptrn, flags) @@ -286,8 +285,7 @@ f_search(sp, fm, rm, ptrn, plen, eptrn, flags) * b_search -- * Do a backward search. * - * PUBLIC: int b_search __P((SCR *, - * PUBLIC: MARK *, MARK *, char *, size_t, char **, u_int)); + * PUBLIC: int b_search(SCR *, MARK *, MARK *, char *, size_t, char **, u_int); */ int b_search(sp, fm, rm, ptrn, plen, eptrn, flags) |