summaryrefslogtreecommitdiff
path: root/src/openocd.c
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:52 -0800
commit2fc071c6e1180f8dab1e2513106d5e18213fdc8b (patch)
treedc01b01d23b256a19dff2ccea250693618f8569b /src/openocd.c
parent14ed20967f660ca888bba53c47c1c648f470f8e2 (diff)
downloadopenocd+libswd-2fc071c6e1180f8dab1e2513106d5e18213fdc8b.tar.gz
openocd+libswd-2fc071c6e1180f8dab1e2513106d5e18213fdc8b.tar.bz2
openocd+libswd-2fc071c6e1180f8dab1e2513106d5e18213fdc8b.tar.xz
openocd+libswd-2fc071c6e1180f8dab1e2513106d5e18213fdc8b.zip
change #include "ioutil.h" to <helper/ioutil.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "ioutil.h" the following form should be used. #include <helper/ioutil.h> The exception is from .c files in the same directory.
Diffstat (limited to 'src/openocd.c')
-rw-r--r--src/openocd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openocd.c b/src/openocd.c
index 9c8bcac0..24535152 100644
--- a/src/openocd.c
+++ b/src/openocd.c
@@ -30,7 +30,7 @@
#include "openocd.h"
#include "jtag.h"
-#include "ioutil.h"
+#include <helper/ioutil.h>
#include <helper/configuration.h>
#include "xsvf.h"
#include "svf.h"