diff options
Diffstat (limited to 'gdb/event-top.c')
-rw-r--r-- | gdb/event-top.c | 32 |
1 files changed, 14 insertions, 18 deletions
diff --git a/gdb/event-top.c b/gdb/event-top.c index 78cbead..fb5d51c 100644 --- a/gdb/event-top.c +++ b/gdb/event-top.c @@ -20,30 +20,26 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" - -/* Standard C includes. */ -#include <signal.h> - -/* Local non-gdb includes. */ -#include "annotate.h" -#include "cli/cli-script.h" -#include "common/buffer.h" -#include "continuations.h" -#include "event-loop.h" -#include "event-top.h" -#include "gdb_select.h" -#include "gdbcmd.h" -#include "gdbthread.h" +#include "top.h" #include "inferior.h" #include "infrun.h" +#include "target.h" +#include "terminal.h" /* for job_control */ +#include "event-loop.h" +#include "event-top.h" #include "interps.h" +#include <signal.h> +#include "cli/cli-script.h" /* for reset_command_nest_depth */ #include "main.h" -#include "maint.h" +#include "gdbthread.h" #include "observable.h" +#include "continuations.h" +#include "gdbcmd.h" /* for dont_repeat() */ +#include "annotate.h" +#include "maint.h" +#include "common/buffer.h" #include "ser-event.h" -#include "target.h" -#include "terminal.h" -#include "top.h" +#include "gdb_select.h" /* readline include files. */ #include "readline/readline.h" |