X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=symbol.h;h=3d58dfe4e2ec990b5e83eae6b9b67d6b2211f78c;hb=78cc65b14fc5c53a16368fe5975c70c83e969b19;hp=895bfea33da83dd0acdadf0596eefe664e17d598;hpb=9e29e9c33f6511c4583e5b8ed83194d433e82c45;p=cparser diff --git a/symbol.h b/symbol.h index 895bfea..3d58dfe 100644 --- a/symbol.h +++ b/symbol.h @@ -1,12 +1,15 @@ #ifndef SYMBOL_H #define SYMBOL_H +#include "ast.h" + typedef struct symbol_t symbol_t; struct symbol_t { - const char *string; - unsigned short ID; - unsigned short pp_ID; + const char *string; + unsigned short ID; + unsigned short pp_ID; + declaration_t *declaration; }; #endif