diff options
Diffstat (limited to 'filter/config.Y')
-rw-r--r-- | filter/config.Y | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/filter/config.Y b/filter/config.Y index 4c4a859a..8988241b 100644 --- a/filter/config.Y +++ b/filter/config.Y @@ -170,14 +170,7 @@ function_body: CF_ADDTO(conf, function_def) function_def: FUNCTION SYM { DBG( "Beginning of function %s\n", $2->name ); cf_push_scope($2); } function_params function_body { - extern struct f_inst *startup_func, *test1_func, *test2_func; cf_define_symbol($2, SYM_FUNCTION, $5); - if (!strcasecmp($2->name, "__startup")) - startup_func = $5; - if (!strcasecmp($2->name, "__test1")) - test1_func = $5; - if (!strcasecmp($2->name, "__test2")) - test2_func = $5; $2->aux = (int) $4; $2->aux2 = $5; DBG("Hmm, we've got one function here - %s\n", $2->name); |