diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:26 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:22:52 -0800 |
commit | 2fc071c6e1180f8dab1e2513106d5e18213fdc8b (patch) | |
tree | dc01b01d23b256a19dff2ccea250693618f8569b /src | |
parent | 14ed20967f660ca888bba53c47c1c648f470f8e2 (diff) | |
download | openocd+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')
-rw-r--r-- | src/ecosboard.c | 2 | ||||
-rw-r--r-- | src/openocd.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ecosboard.c b/src/ecosboard.c index d979c187..c93cea05 100644 --- a/src/ecosboard.c +++ b/src/ecosboard.c @@ -23,7 +23,7 @@ #include "types.h" #include "jtag.h" -#include "ioutil.h" +#include <helper/ioutil.h> #include <helper/configuration.h> #include "xsvf.h" #include "svf.h" 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" |