X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=symbol_table.c;h=cef042104f3c0da85eca3f37d1b7e78723e76cd2;hb=875418c7e5f409c4bf503f749ede8f9c1d8e7996;hp=2f8f9dbc272dcb6bd09000cda8c5bcd90179350e;hpb=fd16b92f058181088a385c3224c8814831c006d3;p=cparser diff --git a/symbol_table.c b/symbol_table.c index 2f8f9db..cef0421 100644 --- a/symbol_table.c +++ b/symbol_table.c @@ -20,6 +20,7 @@ #include #include "symbol_table_t.h" +#include "symbol_t.h" #include "token_t.h" #include "adt/hash_string.h" #include "adt/obst.h" @@ -31,7 +32,7 @@ void init_symbol_table_entry(symbol_t *entry, const char *string) { entry->string = string; entry->ID = T_IDENTIFIER; - entry->pp_ID = 0; + entry->pp_ID = TP_IDENTIFIER; entry->declaration = NULL; }