diff -r 0ede7ca157e2 -r 8aee27d46208 absyntax_utils/absyntax_utils.cc --- a/absyntax_utils/absyntax_utils.cc Fri Dec 26 09:39:18 2014 +0000 +++ b/absyntax_utils/absyntax_utils.cc Fri Dec 26 09:57:02 2014 +0000 @@ -108,12 +108,10 @@ dsymtable_c function_symtable; /* A symbol table with all globally declared functions block types... */ -function_block_declaration_c null_symbol2(NULL,NULL,NULL); -symtable_c function_block_type_symtable; +symtable_c function_block_type_symtable; /* A symbol table with all globally declared program types... */ -program_declaration_c null_symbol3(NULL,NULL,NULL); -symtable_c program_type_symtable; +symtable_c program_type_symtable; /* A symbol table with all user declared type definitions... */ /* Note that function block types and program types have their @@ -121,8 +119,7 @@ * * The symbol_c * associated to the value will point to the data type declaration. */ -symbol_c null_symbol4; -symtable_c type_symtable; +symtable_c type_symtable; /***********************************************************************/