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/c-lang.c | |
parent | ae2b14c73cd42b067e9687219155ed044210f0c1 (diff) | |
download | binutils-gdb-users/tromey/sort-includes.tar.gz |
the patchusers/tromey/sort-includes
Diffstat (limited to 'gdb/c-lang.c')
-rw-r--r-- | gdb/c-lang.c | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/gdb/c-lang.c b/gdb/c-lang.c index 36c750204da..7e4caddd43c 100644 --- a/gdb/c-lang.c +++ b/gdb/c-lang.c @@ -18,23 +18,29 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" -#include "symtab.h" -#include "gdbtypes.h" -#include "expression.h" -#include "parser-defs.h" -#include "language.h" -#include "varobj.h" #include "c-lang.h" + +/* Standard C includes. */ +#include <ctype.h> + +/* Local non-gdb includes. */ +#include "demangle.h" + +/* Local includes. */ #include "c-support.h" -#include "valprint.h" -#include "macroscope.h" #include "charset.h" -#include "demangle.h" #include "cp-abi.h" #include "cp-support.h" +#include "expression.h" #include "gdb_obstack.h" -#include <ctype.h> #include "gdbcore.h" +#include "gdbtypes.h" +#include "language.h" +#include "macroscope.h" +#include "parser-defs.h" +#include "symtab.h" +#include "valprint.h" +#include "varobj.h" /* Given a C string type, STR_TYPE, return the corresponding target character set name. */ |