summaryrefslogtreecommitdiff
path: root/src/flash/mflash.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-12-03 04:14:51 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-03 04:24:42 -0800
commitc6dd6a576d0b680f67ad9fd8af12fb342b26c83d (patch)
tree442d881432bc6797131297a37556d457b0290940 /src/flash/mflash.c
parentfa43bdff54a2f42e7c5a77304d8d1ffb3fe75ea5 (diff)
downloadopenocd+libswd-c6dd6a576d0b680f67ad9fd8af12fb342b26c83d.tar.gz
openocd+libswd-c6dd6a576d0b680f67ad9fd8af12fb342b26c83d.tar.bz2
openocd+libswd-c6dd6a576d0b680f67ad9fd8af12fb342b26c83d.tar.xz
openocd+libswd-c6dd6a576d0b680f67ad9fd8af12fb342b26c83d.zip
change #include "target.h" to <target/target.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "target.h" the following form should be used. #include <target/target.h> The exception is from .c files in the same directory.
Diffstat (limited to 'src/flash/mflash.c')
-rw-r--r--src/flash/mflash.c2
1 files changed, 1 insertions, 1 deletions
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 <target/target.h>
#include <helper/time_support.h>
#include <helper/fileio.h>
#include <helper/log.h>