diff options
Diffstat (limited to 'usr.bin/man/man.c')
-rw-r--r-- | usr.bin/man/man.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/usr.bin/man/man.c b/usr.bin/man/man.c index 329cc50f00e..847dbf12338 100644 --- a/usr.bin/man/man.c +++ b/usr.bin/man/man.c @@ -1,4 +1,4 @@ -/* $OpenBSD: man.c,v 1.25 2003/06/03 02:56:12 millert Exp $ */ +/* $OpenBSD: man.c,v 1.26 2003/06/10 22:20:48 deraadt Exp $ */ /* $NetBSD: man.c,v 1.7 1995/09/28 06:05:34 tls Exp $ */ /* @@ -40,7 +40,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)man.c 8.17 (Berkeley) 1/31/95"; #else -static char rcsid[] = "$OpenBSD: man.c,v 1.25 2003/06/03 02:56:12 millert Exp $"; +static char rcsid[] = "$OpenBSD: man.c,v 1.26 2003/06/10 22:20:48 deraadt Exp $"; #endif #endif /* not lint */ @@ -406,10 +406,7 @@ main(int argc, char *argv[]) * Search the manuals for the pages. */ static int -manual(page, tag, pg) - char *page; - TAG *tag; - glob_t *pg; +manual(char *page, TAG *tag, glob_t *pg) { ENTRY *ep, *e_sufp, *e_tag; TAG *missp, *sufp; |