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/pld | |
parent | 35f1a40f6fad146db9d5546c47c45472d0ef0bed (diff) | |
download | openocd+libswd-c79cca04bed78839a18e73f3996805eb8001a812.tar.gz openocd+libswd-c79cca04bed78839a18e73f3996805eb8001a812.tar.bz2 openocd+libswd-c79cca04bed78839a18e73f3996805eb8001a812.tar.xz openocd+libswd-c79cca04bed78839a18e73f3996805eb8001a812.zip |
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/pld')
-rw-r--r-- | src/pld/pld.c | 2 | ||||
-rw-r--r-- | src/pld/xilinx_bit.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pld/pld.c b/src/pld/pld.c index df7ac0de..985e3648 100644 --- a/src/pld/pld.c +++ b/src/pld/pld.c @@ -22,7 +22,7 @@ #endif #include "pld.h" -#include "log.h" +#include <helper/log.h> #include "time_support.h" diff --git a/src/pld/xilinx_bit.c b/src/pld/xilinx_bit.c index 70edbf57..1ae1ea8d 100644 --- a/src/pld/xilinx_bit.c +++ b/src/pld/xilinx_bit.c @@ -23,7 +23,7 @@ #include "xilinx_bit.h" #include "pld.h" -#include "log.h" +#include <helper/log.h> #include <sys/stat.h> |