From: wessels <> Date: Thu, 23 Oct 1997 01:25:17 +0000 (+0000) Subject: fix static decls X-Git-Tag: SQUID_3_0_PRE1~4734 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f8c4d483924e9d70a665d7fe0ddea3ac5bece348;p=thirdparty%2Fsquid.git fix static decls --- diff --git a/src/cf_gen.cc b/src/cf_gen.cc index b87b40c7c6..8bc953307d 100644 --- a/src/cf_gen.cc +++ b/src/cf_gen.cc @@ -1,5 +1,5 @@ /* - * $Id: cf_gen.cc,v 1.10 1997/10/22 19:23:45 wessels Exp $ + * $Id: cf_gen.cc,v 1.11 1997/10/22 19:25:17 wessels Exp $ * * DEBUG: section 1 Startup and Main Loop * AUTHOR: Max Okumoto @@ -357,7 +357,7 @@ gen_parse(Entry * head, FILE * fp) Entry *entry; fprintf(fp, - "int\n" + "static int\n" "parse_line(char *buff)\n" "{\n" "\tint\tresult = 1;\n" @@ -400,7 +400,7 @@ gen_dump(Entry * head, FILE * fp) { Entry *entry; fprintf(fp, - "static void\n" + "void\n" "dump_config(StoreEntry *entry)\n" "{\n" );