From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]) by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id eab47cea for ; Fri, 15 Jul 2016 13:50:50 -0500 (EST) Date: Fri, 15 Jul 2016 13:50:50 -0500 (EST) Message-Id: <17021804471642535609.enqueue@fantadrom.bsd.lv> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: Fix previous: the mandocdb() prototype was already there, it X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Fix previous: the mandocdb() prototype was already there, it just hid among static functions, as noticed by tedu@ (my bad). Modified Files: -------------- mdocml: main.c Revision Data ------------- Index: main.c =================================================================== RCS file: /home/cvs/mdocml/mdocml/main.c,v retrieving revision 1.270 retrieving revision 1.271 diff -Lmain.c -Lmain.c -u -p -r1.270 -r1.271 --- main.c +++ main.c @@ -88,7 +88,9 @@ struct curparse { }; +#if HAVE_SQLITE3 int mandocdb(int, char *[]); +#endif static int fs_lookup(const struct manpaths *, size_t ipath, const char *, @@ -98,9 +100,6 @@ static void fs_search(const struct ma const struct manpaths *, int, char**, struct manpage **, size_t *); static int koptions(int *, char *); -#if HAVE_SQLITE3 -int mandocdb(int, char**); -#endif static int moptions(int *, char *); static void mmsg(enum mandocerr, enum mandoclevel, const char *, int, int, const char *); -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv