Include target.h in inf-loop.h

$ make check-headers CHECK_HEADERS="target.h inf-loop.h"
...
../../binutils-gdb/gdb/inf-loop.h:23:42: error: use of enum 'inferior_event_type' without previous declaration
 extern void inferior_event_handler (enum inferior_event_type event_type,
                                          ^
gdb:

2017-01-06  Yao Qi  <yao.qi@linaro.org>

	* inf-loop.c: Don't include "target.h".
	* inf-loop.h: Include it here.
This commit is contained in:
Yao Qi 2017-01-06 14:26:45 +00:00
parent 8018d34f1e
commit 051d2ddae5
3 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2017-01-06 Yao Qi <yao.qi@linaro.org>
* inf-loop.c: Don't include "target.h".
* inf-loop.h: Include it here.
2017-01-06 Yao Qi <yao.qi@linaro.org>
* dfp.h: Include "dboulest.h" and "expression.h".

View File

@ -20,7 +20,6 @@
#include "defs.h"
#include "inferior.h"
#include "infrun.h"
#include "target.h" /* For enum inferior_event_type. */
#include "event-loop.h"
#include "event-top.h"
#include "inf-loop.h"

View File

@ -20,6 +20,8 @@
#ifndef INF_LOOP_H
#define INF_LOOP_H
#include "target.h" /* For enum inferior_event_type. */
extern void inferior_event_handler (enum inferior_event_type event_type,
void* client_data);