- config-lexer.l: declare ccomment() as static
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>
Thu, 4 Jun 2015 11:09:23 +0000 (11:09 +0000)
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>
Thu, 4 Jun 2015 11:09:23 +0000 (11:09 +0000)
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/hopm/trunk@6046 82007160-df01-0410-b94d-b575c5fd34c7

src/config-lexer.l

index 01e09e712d438340a4b83e04934731a649f97293..97cb36871fd4d08f620def57b0e41a13e1e1569d 100644 (file)
@@ -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;