implement some missing builtin variants
[cparser] / symbol_table.c
index 64f2c22..b756e8e 100644 (file)
@@ -30,10 +30,11 @@ struct obstack symbol_obstack;
 static inline
 void init_symbol_table_entry(symbol_t *entry, const char *string)
 {
-       entry->string = string;
-       entry->ID     = T_IDENTIFIER;
-       entry->pp_ID  = TP_IDENTIFIER;
-       entry->entity = NULL;
+       entry->string        = string;
+       entry->ID            = T_IDENTIFIER;
+       entry->pp_ID         = TP_IDENTIFIER;
+       entry->entity        = NULL;
+       entry->pp_definition = NULL;
 }
 
 #define HashSet                    symbol_table_t