diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:25 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:22:48 -0800 |
commit | 264d24495d7ff0048bd5c49736042ed66b90f7a6 (patch) | |
tree | 572e169598fa3dfa7c898749917aa90e9d5e1e68 /src/target | |
parent | d1bc4375e99ce52b72988494f35beca364234bae (diff) | |
download | openocd+libswd-264d24495d7ff0048bd5c49736042ed66b90f7a6.tar.gz openocd+libswd-264d24495d7ff0048bd5c49736042ed66b90f7a6.tar.bz2 openocd+libswd-264d24495d7ff0048bd5c49736042ed66b90f7a6.tar.xz openocd+libswd-264d24495d7ff0048bd5c49736042ed66b90f7a6.zip |
change #include "command.h" to <helper/command.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "command.h"
the following form should be used.
#include <helper/command.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/armv4_5.h | 2 | ||||
-rw-r--r-- | src/target/armv7a.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/target/armv4_5.h b/src/target/armv4_5.h index 7229a6c0..9b6237bc 100644 --- a/src/target/armv4_5.h +++ b/src/target/armv4_5.h @@ -27,7 +27,7 @@ #define ARMV4_5_H #include "target.h" -#include "command.h" +#include <helper/command.h> typedef enum armv4_5_mode diff --git a/src/target/armv7a.c b/src/target/armv7a.c index 1aa0d8ac..ae5ed087 100644 --- a/src/target/armv7a.c +++ b/src/target/armv7a.c @@ -27,7 +27,7 @@ #include "register.h" #include <helper/binarybuffer.h> -#include "command.h" +#include <helper/command.h> #include <stdlib.h> #include <string.h> |