diff options
author | Tom Tromey <tromey@adacore.com> | 2019-05-01 12:28:45 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2019-05-08 10:38:02 -0600 |
commit | b0be6c912f9e901a87740c72f18be1e54ad5267d (patch) | |
tree | eed5862b07cceb28adaf13108021243a7337a495 /gdb/interps.c | |
parent | 587ee17bd492a324c927437fb561b99b274e1d8e (diff) | |
download | gdb-b0be6c912f9e901a87740c72f18be1e54ad5267d.zip gdb-b0be6c912f9e901a87740c72f18be1e54ad5267d.tar.gz gdb-b0be6c912f9e901a87740c72f18be1e54ad5267d.tar.bz2 |
Move interpreter_p declaration to main.h
This moves the interpreter_p declaration from defs.h to main.h. I
think this makes more sense, as it is defined in main.c. Also, this
declaration was in the wrong place -- between a comment and the things
the comment described.
gdb/ChangeLog
2019-05-08 Tom Tromey <tromey@adacore.com>
* tui/tui-interp.c: Include main.h.
* interps.c: Include main.h.
* main.h (interpreter_p): Declare.
* defs.h (interpreter_p): Don't declare.
Diffstat (limited to 'gdb/interps.c')
-rw-r--r-- | gdb/interps.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/interps.c b/gdb/interps.c index b62e333..dfd6eb9 100644 --- a/gdb/interps.c +++ b/gdb/interps.c @@ -38,6 +38,7 @@ #include "completer.h" #include "top.h" /* For command_loop. */ #include "continuations.h" +#include "main.h" /* Each UI has its own independent set of interpreters. */ |