diff options
author | Tom Tromey <tom@tromey.com> | 2019-03-30 11:29:17 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-03-30 11:36:53 -0600 |
commit | 268f4c4cd7b229f7f23ebbf6006973ebe0a05888 (patch) | |
tree | c97516c90aa5bf6ccb54c494c275339d42dc03aa /gdb/language.c | |
parent | ae2b14c73cd42b067e9687219155ed044210f0c1 (diff) | |
download | binutils-gdb-users/tromey/sort-includes.tar.gz |
the patchusers/tromey/sort-includes
Diffstat (limited to 'gdb/language.c')
-rw-r--r-- | gdb/language.c | 32 |
1 files changed, 20 insertions, 12 deletions
diff --git a/gdb/language.c b/gdb/language.c index ea294e670b6..04af039c9fe 100644 --- a/gdb/language.c +++ b/gdb/language.c @@ -29,22 +29,30 @@ whenever the working language changes. That would be a lot faster. */ #include "defs.h" -#include <ctype.h> -#include "symtab.h" -#include "gdbtypes.h" -#include "value.h" -#include "gdbcmd.h" -#include "expression.h" #include "language.h" -#include "varobj.h" -#include "target.h" -#include "parser-defs.h" + +/* Standard C includes. */ +#include <ctype.h> + +/* Standard C++ includes. */ +#include <algorithm> + +/* Local non-gdb includes. */ #include "demangle.h" -#include "symfile.h" + +/* Local includes. */ +#include "c-lang.h" #include "cp-support.h" +#include "expression.h" #include "frame.h" -#include "c-lang.h" -#include <algorithm> +#include "gdbcmd.h" +#include "gdbtypes.h" +#include "parser-defs.h" +#include "symfile.h" +#include "symtab.h" +#include "target.h" +#include "value.h" +#include "varobj.h" static int unk_lang_parser (struct parser_state *); |