diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:49 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:41 -0800 |
commit | 36e53978b91c124fb7388d795856fa01ab138dc5 (patch) | |
tree | ff7ed6fef278d2d612aadb1145308240bd2c96a9 /src/target | |
parent | a8880f0b5ab7f5c9d4d3b031fd487caac766b99f (diff) | |
download | openocd_libswd-36e53978b91c124fb7388d795856fa01ab138dc5.tar.gz openocd_libswd-36e53978b91c124fb7388d795856fa01ab138dc5.tar.bz2 openocd_libswd-36e53978b91c124fb7388d795856fa01ab138dc5.tar.xz openocd_libswd-36e53978b91c124fb7388d795856fa01ab138dc5.zip |
change #include "mips32_pracc.h" to <target/mips32_pracc.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "mips32_pracc.h"
the following form should be used.
#include <target/mips32_pracc.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/mips32.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/mips32.h b/src/target/mips32.h index 7d1928e5..ee5bd421 100644 --- a/src/target/mips32.h +++ b/src/target/mips32.h @@ -24,7 +24,7 @@ #define MIPS32_H #include "target.h" -#include "mips32_pracc.h" +#include <target/mips32_pracc.h> #define MIPS32_COMMON_MAGIC 0xB320B320 |