diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:28 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:22:52 -0800 |
commit | c79cca04bed78839a18e73f3996805eb8001a812 (patch) | |
tree | ef31b13038a68d5d864c005d9ef5c736528fe6c3 /src/target/arm_simulator.c | |
parent | 35f1a40f6fad146db9d5546c47c45472d0ef0bed (diff) | |
download | riscv-openocd-c79cca04bed78839a18e73f3996805eb8001a812.zip riscv-openocd-c79cca04bed78839a18e73f3996805eb8001a812.tar.gz riscv-openocd-c79cca04bed78839a18e73f3996805eb8001a812.tar.bz2 |
change #include "log.h" to <helper/log.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "log.h"
the following form should be used.
#include <helper/log.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/target/arm_simulator.c')
-rw-r--r-- | src/target/arm_simulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/arm_simulator.c b/src/target/arm_simulator.c index b96a08a..4b8d86e 100644 --- a/src/target/arm_simulator.c +++ b/src/target/arm_simulator.c @@ -29,7 +29,7 @@ #include "arm_simulator.h" #include <helper/binarybuffer.h> #include "register.h" -#include "log.h" +#include <helper/log.h> static uint32_t arm_shift(uint8_t shift, uint32_t Rm, |