Follow-up Comment #2, bug #51513 (project groff):
>From 7ded635104bcc80a5c890b34666583c8a1fe2b42 Mon Sep 17 00:00:00 2001 From: Bjarni Ingi Gislason <[email protected]> Date: Mon, 31 Jul 2017 00:54:38 +0000 Subject: [PATCH] src: itoa.c: add missing prototypes Signed-off-by: Bjarni Ingi Gislason <[email protected]> --- src/libs/libgroff/itoa.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/libs/libgroff/itoa.c b/src/libs/libgroff/itoa.c index fdeca06e..7ca16124 100644 --- a/src/libs/libgroff/itoa.c +++ b/src/libs/libgroff/itoa.c @@ -23,6 +23,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ extern "C" { #endif +/* Prototypes */ + +char *i_to_a(int); +char *ui_to_a(unsigned int); + char *i_to_a(int i) { /* Room for INT_DIGITS digits, - and '\0' */ -- 2.13.2 _______________________________________________________ Reply to this item at: <http://savannah.gnu.org/bugs/?51513> _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ _______________________________________________ bug-groff mailing list [email protected] https://lists.gnu.org/mailman/listinfo/bug-groff
