aboutsummaryrefslogtreecommitdiff
path: root/gdb/completer.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/completer.c')
-rw-r--r--gdb/completer.c24
1 files changed, 14 insertions, 10 deletions
diff --git a/gdb/completer.c b/gdb/completer.c
index d7cf4fd..ae79999 100644
--- a/gdb/completer.c
+++ b/gdb/completer.c
@@ -17,20 +17,24 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "defs.h"
-#include "symtab.h"
-#include "gdbtypes.h"
+
+/* Standard C++ includes. */
+#include <algorithm>
+
+/* Local non-gdb includes. */
+#include "arch-utils.h"
+#include "cli/cli-decode.h"
+#include "common/gdb_signals.h"
#include "expression.h"
-#include "filenames.h" /* For DOSish file names. */
+#include "filenames.h"
+#include "gdbtypes.h"
#include "language.h"
-#include "common/gdb_signals.h"
-#include "target.h"
+#include "linespec.h"
+#include "location.h"
#include "reggroups.h"
+#include "symtab.h"
+#include "target.h"
#include "user-regs.h"
-#include "arch-utils.h"
-#include "location.h"
-#include <algorithm>
-#include "linespec.h"
-#include "cli/cli-decode.h"
/* FIXME: This is needed because of lookup_cmd_1 (). We should be
calling a hook instead so we eliminate the CLI dependency. */