From: michael Date: Thu, 4 Jun 2015 11:09:03 +0000 (+0000) Subject: - config-lexer.l: declare ccomment() as static X-Git-Tag: 1.0.7~8 X-Git-Url: http://git.serene-ircd.net/?a=commitdiff_plain;h=24603174918a2c990cf053f4e2c92c91acd90ce2;p=hopm.git - config-lexer.l: declare ccomment() as static git-svn-id: svn://svn.ircd-hybrid.org/svnroot/hopm/branches/1.0.x@6045 82007160-df01-0410-b94d-b575c5fd34c7 --- diff --git a/src/config-lexer.l b/src/config-lexer.l index 01e09e7..97cb368 100644 --- a/src/config-lexer.l +++ b/src/config-lexer.l @@ -32,7 +32,7 @@ #include "config-parser.h" -void ccomment(void); +static void ccomment(void); unsigned int linenum = 1; char linebuf[512]; @@ -253,7 +253,7 @@ OFF { /* C-comment ignoring routine -kre*/ -void +static void ccomment(void) { int c = 0;