diff options
Diffstat (limited to 'gdb/dtrace-probe.c')
-rw-r--r-- | gdb/dtrace-probe.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/gdb/dtrace-probe.c b/gdb/dtrace-probe.c index bd5cddc..0114c40 100644 --- a/gdb/dtrace-probe.c +++ b/gdb/dtrace-probe.c @@ -20,19 +20,21 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" -#include "probe.h" + +/* Local non-gdb includes. */ +#include "ax-gdb.h" +#include "ax.h" #include "common/vec.h" +#include "complaints.h" #include "elf-bfd.h" #include "gdbtypes.h" -#include "obstack.h" -#include "objfiles.h" -#include "complaints.h" -#include "value.h" -#include "ax.h" -#include "ax-gdb.h" +#include "inferior.h" #include "language.h" +#include "objfiles.h" +#include "obstack.h" #include "parser-defs.h" -#include "inferior.h" +#include "probe.h" +#include "value.h" /* The type of the ELF sections where we will find the DOF programs with information about probes. */ |