diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2011-12-12 02:00:49 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2011-12-12 02:00:49 +0000 |
commit | c42838fef393e5adf1aa518e01ad6d6a81fdacac (patch) | |
tree | 4159f03b7d7c3896b82b9ac86577327883c89771 /manpath.h | |
parent | 21233e404785a217f2bc0d3060f79f76911b9e1e (diff) | |
download | mandoc-c42838fef393e5adf1aa518e01ad6d6a81fdacac.tar.gz |
implement -C (alternative config file) for apropos(1) and mandocdb(8),
including various tweaks to the whatis(8) manual;
ok kristaps@
Diffstat (limited to 'manpath.h')
-rw-r--r-- | manpath.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 *); |