parser: Remove the unused attribute alignment from struct declaration_specifiers_t.
[cparser] / entity.h
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2012 Matthias Braun <matze@braunis.de>
4  */
5 #ifndef ENTITY_H
6 #define ENTITY_H
7
8 typedef struct scope_t                      scope_t;
9
10 typedef struct entity_base_t                entity_base_t;
11 typedef struct compound_t                   compound_t;
12 typedef struct enum_t                       enum_t;
13 typedef struct enum_value_t                 enum_value_t;
14 typedef struct label_t                      label_t;
15 typedef struct namespace_t                  namespace_t;
16 typedef struct declaration_t                declaration_t;
17 typedef struct typedef_t                    typedef_t;
18 typedef struct variable_t                   variable_t;
19 typedef struct function_t                   function_t;
20 typedef struct compound_member_t            compound_member_t;
21 typedef union  entity_t                     entity_t;
22
23 typedef unsigned                            decl_modifiers_t;
24
25 #endif