parser: Remove the unused attribute alignment from struct declaration_specifiers_t.
[cparser] / symbol_t.h
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2012 Matthias Braun <matze@braunis.de>
4  */
5 #ifndef SYMBOL_T_H
6 #define SYMBOL_T_H
7
8 #include "symbol.h"
9 #include "entity.h"
10 #include "token_t.h"
11
12 struct symbol_t {
13         char const      *string;
14         unsigned short   ID;
15         pp_token_kind_t  pp_ID;
16         entity_t        *entity;
17         pp_definition_t *pp_definition;
18 };
19
20 #endif