diff -r 0ede7ca157e2 -r 8aee27d46208 absyntax_utils/absyntax_utils.hh --- a/absyntax_utils/absyntax_utils.hh Fri Dec 26 09:39:18 2014 +0000 +++ b/absyntax_utils/absyntax_utils.hh Fri Dec 26 09:57:02 2014 +0000 @@ -61,12 +61,12 @@ extern function_symtable_t function_symtable; /* A symbol table with all globally declared functions block types... */ -extern function_block_declaration_c null_symbol2; -extern symtable_c function_block_type_symtable; +typedef symtable_c function_block_type_symtable_t; +extern function_block_type_symtable_t function_block_type_symtable; /* A symbol table with all globally declared program types... */ -extern program_declaration_c null_symbol3; -extern symtable_c program_type_symtable; +typedef symtable_c program_type_symtable_t; +extern program_type_symtable_t program_type_symtable; /* A symbol table with all user declared type definitions... */ /* Note that function block types and program types have their @@ -74,8 +74,8 @@ * * The symbol_c * associated to the value will point to the data type declaration. */ -extern symbol_c null_symbol4; -extern symtable_c type_symtable; +typedef symtable_c type_symtable_t; +extern type_symtable_t type_symtable; /***********************************************************************/