diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:27 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:22:52 -0800 |
commit | 35f1a40f6fad146db9d5546c47c45472d0ef0bed (patch) | |
tree | 5f498b4e27e2d194e25b7264c8a9cf54364de363 | |
parent | 2fc071c6e1180f8dab1e2513106d5e18213fdc8b (diff) | |
download | openocd_libswd-35f1a40f6fad146db9d5546c47c45472d0ef0bed.tar.gz openocd_libswd-35f1a40f6fad146db9d5546c47c45472d0ef0bed.tar.bz2 openocd_libswd-35f1a40f6fad146db9d5546c47c45472d0ef0bed.tar.xz openocd_libswd-35f1a40f6fad146db9d5546c47c45472d0ef0bed.zip |
change #include "jim.h" to <helper/jim.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "jim.h"
the following form should be used.
#include <helper/jim.h>
The exception is from .c files in the same directory.
-rw-r--r-- | src/helper/command.h | 2 | ||||
-rw-r--r-- | src/target/target.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/helper/command.h b/src/helper/command.h index 8d68c183..8beeb724 100644 --- a/src/helper/command.h +++ b/src/helper/command.h @@ -32,7 +32,7 @@ /* Jim is provied by eCos */ #include <cyg/jimtcl/jim.h> #else -#include "jim.h" +#include <helper/jim.h> #endif /* To achieve C99 printf compatibility in MinGW, gnu_printf should be diff --git a/src/target/target.h b/src/target/target.h index 3e307142..43ac65fc 100644 --- a/src/target/target.h +++ b/src/target/target.h @@ -27,7 +27,7 @@ #define TARGET_H #include "types.h" -#include "jim.h" +#include <helper/jim.h> struct reg; struct trace; |