diff options
author | 2011-12-12 01:59:13 +0000 | |
---|---|---|
committer | 2011-12-12 01:59:13 +0000 | |
commit | 24547dae731fce618413a45014e7984ea5b315b7 (patch) | |
tree | 2234539d1e197a1421ee3799acbba44af3c8d0d5 /usr.bin/mandoc/manpath.h | |
parent | utility function for parsing and validating SMTP response lines (diff) | |
download | wireguard-openbsd-24547dae731fce618413a45014e7984ea5b315b7.tar.xz wireguard-openbsd-24547dae731fce618413a45014e7984ea5b315b7.zip |
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 *); |