From 7a4f4457e5713eab8537a723ed10474287377225 Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Thu, 3 Dec 2009 04:14:52 -0800 Subject: [PATCH] change #include "trace.h" to Changes from the flat namespace to heirarchical one. Instead of writing: #include "trace.h" the following form should be used. #include The exception is from .c files in the same directory. --- src/target/etm.h | 2 +- src/target/xscale.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/target/etm.h b/src/target/etm.h index 60e4ea703f..656e04b7ea 100644 --- a/src/target/etm.h +++ b/src/target/etm.h @@ -23,7 +23,7 @@ #ifndef ETM_H #define ETM_H -#include "trace.h" +#include #include struct image; diff --git a/src/target/xscale.h b/src/target/xscale.h index c083b06cd7..6f8117855d 100644 --- a/src/target/xscale.h +++ b/src/target/xscale.h @@ -25,7 +25,7 @@ #include #include -#include "trace.h" +#include #define XSCALE_COMMON_MAGIC 0x58534341 -- 2.30.2