introduce some builtin types
[cparser] / symbol.h
index 11efafb..3d58dfe 100644 (file)
--- a/symbol.h
+++ b/symbol.h
@@ -1,15 +1,15 @@
 #ifndef SYMBOL_H
 #define SYMBOL_H
 
-#include "parser.h"
+#include "ast.h"
 
 typedef struct symbol_t symbol_t;
 
 struct symbol_t {
-       const char          *string;
-       unsigned short       ID;
-       unsigned short       pp_ID;
-       environment_entry_t *thing;
+       const char     *string;
+       unsigned short  ID;
+       unsigned short  pp_ID;
+       declaration_t  *declaration;
 };
 
 #endif