diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-12-12 01:59:14 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-12-12 01:59:14 +0000 |
commit | 95ff32580540b6b60c92de49abf3bdcceb9e4632 (patch) | |
tree | 7f1c9863ac2e8d5096d4ea9594284c4af33ea533 /usr.bin/mandoc/manpath.h | |
parent | 862f63944db00d55fc36806c09f2822e6ac59833 (diff) |
implement -C (alternative config file) for apropos(1) and mandocdb(8);
ok kristaps@
Diffstat (limited to 'usr.bin/mandoc/manpath.h')
-rw-r--r-- | usr.bin/mandoc/manpath.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/mandoc/manpath.h b/usr.bin/mandoc/manpath.h index a30b1c26082..632834d6fc4 100644 --- a/usr.bin/mandoc/manpath.h +++ b/usr.bin/mandoc/manpath.h @@ -1,4 +1,4 @@ -/* $Id: manpath.h,v 1.1 2011/11/26 16:41:35 schwarze Exp $ */ +/* $Id: manpath.h,v 1.2 2011/12/12 01:59:13 schwarze Exp $ */ /* * Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org> * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv> @@ -29,9 +29,9 @@ struct manpaths { __BEGIN_DECLS -void manpath_manconf(const char *, struct manpaths *); -void manpath_parse(struct manpaths *, char *, char *); -void manpath_parseconf(struct manpaths *); +void manpath_manconf(struct manpaths *, const char *); +void manpath_parse(struct manpaths *, const char *, char *, char *); +void manpath_parseconf(struct manpaths *, const char *); void manpath_parseline(struct manpaths *, char *); void manpath_free(struct manpaths *); |