parser: Remove the unused attribute alignment from struct declaration_specifiers_t.
[cparser] / symbol.h
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2012 Matthias Braun <matze@braunis.de>
4  */
5 #ifndef SYMBOL_H
6 #define SYMBOL_H
7
8 typedef struct symbol_t         symbol_t;
9 typedef struct pp_definition_t  pp_definition_t;
10
11 /** special symbol used for anonymous/error entities. */
12 extern symbol_t *sym_anonymous;
13
14 #endif