diff options
Diffstat (limited to 'gdb/dictionary.c')
-rw-r--r-- | gdb/dictionary.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gdb/dictionary.c b/gdb/dictionary.c index 88eff2f..b4b544b 100644 --- a/gdb/dictionary.c +++ b/gdb/dictionary.c @@ -21,13 +21,19 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" + +/* Standard C includes. */ #include <ctype.h> -#include "gdb_obstack.h" -#include "symtab.h" + +/* Standard C++ includes. */ +#include <unordered_map> + +/* Local non-gdb includes. */ #include "buildsym.h" #include "dictionary.h" +#include "gdb_obstack.h" #include "safe-ctype.h" -#include <unordered_map> +#include "symtab.h" /* This file implements dictionaries, which are tables that associate symbols to names. They are represented by an opaque type 'struct |