diff options
Diffstat (limited to 'gdb/annotate.c')
-rw-r--r-- | gdb/annotate.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gdb/annotate.c b/gdb/annotate.c index 97cb4c8..20df956 100644 --- a/gdb/annotate.c +++ b/gdb/annotate.c @@ -17,15 +17,18 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" + +/* Local non-gdb includes. */ #include "annotate.h" -#include "value.h" -#include "target.h" -#include "gdbtypes.h" #include "breakpoint.h" -#include "observable.h" +#include "gdbtypes.h" #include "inferior.h" #include "infrun.h" +#include "observable.h" +#include "target.h" #include "top.h" +#include "value.h" + /* Prototypes for local functions. */ |