diff options
Diffstat (limited to 'gdb/completer.c')
-rw-r--r-- | gdb/completer.c | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/gdb/completer.c b/gdb/completer.c index ae79999..d7cf4fd 100644 --- a/gdb/completer.c +++ b/gdb/completer.c @@ -17,24 +17,20 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.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" +#include "symtab.h" #include "gdbtypes.h" +#include "expression.h" +#include "filenames.h" /* For DOSish file names. */ #include "language.h" -#include "linespec.h" -#include "location.h" -#include "reggroups.h" -#include "symtab.h" +#include "common/gdb_signals.h" #include "target.h" +#include "reggroups.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. */ |