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:51 -0800 |
commit | 0b7720d2ffc92a1a27bc01cb05ebd7d8d83c427c (patch) | |
tree | ee2e03e2c660e230839b99fd922da2d54a612932 | |
parent | 264d24495d7ff0048bd5c49736042ed66b90f7a6 (diff) | |
download | openocd_libswd-0b7720d2ffc92a1a27bc01cb05ebd7d8d83c427c.tar.gz openocd_libswd-0b7720d2ffc92a1a27bc01cb05ebd7d8d83c427c.tar.bz2 openocd_libswd-0b7720d2ffc92a1a27bc01cb05ebd7d8d83c427c.tar.xz openocd_libswd-0b7720d2ffc92a1a27bc01cb05ebd7d8d83c427c.zip |
change #include "configuration.h" to <helper/configuration.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "configuration.h"
the following form should be used.
#include <helper/configuration.h>
The exception is from .c files in the same directory.
-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 cfb57655..d979c187 100644 --- a/src/ecosboard.c +++ b/src/ecosboard.c @@ -24,7 +24,7 @@ #include "types.h" #include "jtag.h" #include "ioutil.h" -#include "configuration.h" +#include <helper/configuration.h> #include "xsvf.h" #include "svf.h" #include "nand.h" diff --git a/src/openocd.c b/src/openocd.c index 9a080191..9c8bcac0 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -31,7 +31,7 @@ #include "openocd.h" #include "jtag.h" #include "ioutil.h" -#include "configuration.h" +#include <helper/configuration.h> #include "xsvf.h" #include "svf.h" #include "nand.h" |