summaryrefslogtreecommitdiff
path: root/gdb/probe.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/probe.c')
-rw-r--r--gdb/probe.c36
1 files changed, 23 insertions, 13 deletions
diff --git a/gdb/probe.c b/gdb/probe.c
index b9337a9d19f..a3cf79c4c94 100644
--- a/gdb/probe.c
+++ b/gdb/probe.c
@@ -19,24 +19,34 @@
#include "defs.h"
#include "probe.h"
-#include "command.h"
+
+/* Standard C includes. */
+#include <ctype.h>
+
+/* Standard C++ includes. */
+#include <algorithm>
+
+/* Local non-gdb includes. */
+#include "filenames.h"
+
+/* Local subdirectory includes. */
#include "cli/cli-cmds.h"
#include "cli/cli-utils.h"
-#include "objfiles.h"
-#include "symtab.h"
-#include "progspace.h"
-#include "filenames.h"
-#include "linespec.h"
-#include "gdb_regex.h"
-#include "frame.h"
+#include "common/gdb_optional.h"
+
+/* Local includes. */
#include "arch-utils.h"
-#include "value.h"
-#include "ax.h"
#include "ax-gdb.h"
+#include "ax.h"
+#include "command.h"
+#include "frame.h"
+#include "gdb_regex.h"
+#include "linespec.h"
#include "location.h"
-#include <ctype.h>
-#include <algorithm>
-#include "common/gdb_optional.h"
+#include "objfiles.h"
+#include "progspace.h"
+#include "symtab.h"
+#include "value.h"
/* Class that implements the static probe methods for "any" probe. */