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/xsvf | |
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/xsvf')
-rw-r--r-- | src/xsvf/xsvf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xsvf/xsvf.h b/src/xsvf/xsvf.h index 2153a2dd..7ce37113 100644 --- a/src/xsvf/xsvf.h +++ b/src/xsvf/xsvf.h @@ -20,7 +20,7 @@ #ifndef XSVF_H #define XSVF_H -#include "command.h" +#include <helper/command.h> int xsvf_register_commands(struct command_context *cmd_ctx); |