From f918c13adae5e6d48846c66287afc5591e48f92c Mon Sep 17 00:00:00 2001 From: NRK Date: Tue, 18 Jan 2022 16:31:30 +0600 Subject: [PATCH] add missing prototype for eprint() --- smu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/smu.c b/smu.c index 2b7fb70..f002574 100644 --- a/smu.c +++ b/smu.c @@ -32,6 +32,7 @@ static int doshortlink(const char *begin, const char *end, int newblock); /* Par static int dosurround(const char *begin, const char *end, int newblock); /* Parser for surrounding tags */ static int dounderline(const char *begin, const char *end, int newblock); /* Parser for underline tags */ static void *ereallocz(void *p, size_t size); +static void eprint(const char *format, ...); static void hprint(const char *begin, const char *end); /* escapes HTML and prints it to output */ static void process(const char *begin, const char *end, int isblock); /* Processes range between begin and end. */