summaryrefslogtreecommitdiff
path: root/src/target/image.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-12-03 04:14:26 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-03 04:22:51 -0800
commit14ed20967f660ca888bba53c47c1c648f470f8e2 (patch)
treef597cc6992aaa44e7a2c75b32d0d2e69ce57650b /src/target/image.h
parent0b7720d2ffc92a1a27bc01cb05ebd7d8d83c427c (diff)
downloadopenocd+libswd-14ed20967f660ca888bba53c47c1c648f470f8e2.tar.gz
openocd+libswd-14ed20967f660ca888bba53c47c1c648f470f8e2.tar.bz2
openocd+libswd-14ed20967f660ca888bba53c47c1c648f470f8e2.tar.xz
openocd+libswd-14ed20967f660ca888bba53c47c1c648f470f8e2.zip
change #include "fileio.h" to <helper/fileio.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "fileio.h" the following form should be used. #include <helper/fileio.h> The exception is from .c files in the same directory.
Diffstat (limited to 'src/target/image.h')
-rw-r--r--src/target/image.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/image.h b/src/target/image.h
index 0dac5bae..e963b3c1 100644
--- a/src/target/image.h
+++ b/src/target/image.h
@@ -26,7 +26,7 @@
#ifndef IMAGE_H
#define IMAGE_H
-#include "fileio.h"
+#include <helper/fileio.h>
#ifdef HAVE_ELF_H
#include <elf.h>