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/python/python.c | |
parent | ae2b14c73cd42b067e9687219155ed044210f0c1 (diff) | |
download | binutils-gdb-users/tromey/sort-includes.tar.gz |
the patchusers/tromey/sort-includes
Diffstat (limited to 'gdb/python/python.c')
-rw-r--r-- | gdb/python/python.c | 32 |
1 files changed, 20 insertions, 12 deletions
diff --git a/gdb/python/python.c b/gdb/python/python.c index 0d9415ce807..4117ba816f1 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -18,24 +18,32 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" +#include "python/python.h" + +/* Standard C includes. */ +#include <ctype.h> + +/* Local non-gdb includes. */ +#include "readline/tilde.h" + +/* Local subdirectory includes. */ +#include "cli/cli-script.h" +#include "cli/cli-utils.h" + +/* Local includes. */ #include "arch-utils.h" #include "command.h" -#include "ui-out.h" -#include "cli/cli-script.h" -#include "gdbcmd.h" -#include "progspace.h" -#include "objfiles.h" -#include "value.h" -#include "language.h" #include "event-loop.h" -#include "serial.h" -#include "readline/tilde.h" -#include "python.h" #include "extension-priv.h" -#include "cli/cli-utils.h" -#include <ctype.h> +#include "gdbcmd.h" +#include "language.h" #include "location.h" +#include "objfiles.h" +#include "progspace.h" #include "ser-event.h" +#include "serial.h" +#include "ui-out.h" +#include "value.h" /* Declared constants and enum for python stack printing. */ static const char python_excp_none[] = "none"; |