X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=symbol.h;h=3d58dfe4e2ec990b5e83eae6b9b67d6b2211f78c;hb=669dddef54ca072449239d2d8deaf65507fe9c17;hp=11efafb6186aea3b6a4861ceb51ddb6161ee12f7;hpb=97f33b63c421063c4cbc869c60076b9132667835;p=cparser diff --git a/symbol.h b/symbol.h index 11efafb..3d58dfe 100644 --- 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