From 81210d17b2cd8688ab9c26dea0147958641b8f7b Mon Sep 17 00:00:00 2001 From: Lars Rademacher Date: Mon, 21 Oct 2013 01:56:48 +0200 Subject: [PATCH] openocd: include fix Fixed absolute includes Change-Id: Idaaa81710b7ace764635c6ab45d86067aadd1220 --- debuggers/openocd/src/helper/command.h | 3 ++- debuggers/openocd/src/target/target_type.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/debuggers/openocd/src/helper/command.h b/debuggers/openocd/src/helper/command.h index e50fff2e..eb303313 100644 --- a/debuggers/openocd/src/helper/command.h +++ b/debuggers/openocd/src/helper/command.h @@ -24,7 +24,8 @@ #ifndef COMMAND_H #define COMMAND_H -#include +#include +#include /* To achieve C99 printf compatibility in MinGW, gnu_printf should be * used for __attribute__((format( ... ))), with GCC v4.4 or later diff --git a/debuggers/openocd/src/target/target_type.h b/debuggers/openocd/src/target/target_type.h index 5b72d841..4a2705c8 100644 --- a/debuggers/openocd/src/target/target_type.h +++ b/debuggers/openocd/src/target/target_type.h @@ -27,7 +27,7 @@ #ifndef TARGET_TYPE_H #define TARGET_TYPE_H -#include +#include struct target;