From c6dd6a576d0b680f67ad9fd8af12fb342b26c83d Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Thu, 3 Dec 2009 04:14:51 -0800 Subject: change #include "target.h" to Changes from the flat namespace to heirarchical one. Instead of writing: #include "target.h" the following form should be used. #include The exception is from .c files in the same directory. --- src/flash/flash.h | 2 +- src/flash/mflash.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/flash') diff --git a/src/flash/flash.h b/src/flash/flash.h index fea7372c..5e31c48b 100644 --- a/src/flash/flash.h +++ b/src/flash/flash.h @@ -26,7 +26,7 @@ #ifndef FLASH_H #define FLASH_H -#include "target.h" +#include #include struct image; diff --git a/src/flash/mflash.c b/src/flash/mflash.c index 63e71db1..aa02e157 100644 --- a/src/flash/mflash.c +++ b/src/flash/mflash.c @@ -22,7 +22,7 @@ #endif #include "mflash.h" -#include "target.h" +#include #include #include #include -- cgit v1.2.3