aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/break-catch-sig.c')
-rw-r--r--gdb/break-catch-sig.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/gdb/break-catch-sig.c b/gdb/break-catch-sig.c
index 53540ee8320..14f901f07c2 100644
--- a/gdb/break-catch-sig.c
+++ b/gdb/break-catch-sig.c
@@ -18,18 +18,23 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "defs.h"
-#include "arch-utils.h"
+
+/* Standard C includes. */
#include <ctype.h>
+
+/* Standard C++ includes. */
+#include <string>
+
+/* Local non-gdb includes. */
+#include "annotate.h"
+#include "arch-utils.h"
#include "breakpoint.h"
+#include "cli/cli-utils.h"
+#include "completer.h"
#include "gdbcmd.h"
#include "inferior.h"
#include "infrun.h"
-#include "annotate.h"
#include "valprint.h"
-#include "cli/cli-utils.h"
-#include "completer.h"
-
-#include <string>
#define INTERNAL_SIGNAL(x) ((x) == GDB_SIGNAL_TRAP || (x) == GDB_SIGNAL_INT)