diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2009-11-16 00:35:11 -0800 |
---|---|---|
committer | David Brownell <dbrownell@users.sourceforge.net> | 2009-11-16 00:35:11 -0800 |
commit | 1186f7efa72a86a7000dce60b090bd4f822cdceb (patch) | |
tree | 019473f28ff166a95f9ff1a24e6b92653fa52008 /src/helper | |
parent | db094c2e60176b3c63ce788159b04a7024ad1010 (diff) | |
download | openocd_libswd-1186f7efa72a86a7000dce60b090bd4f822cdceb.tar.gz openocd_libswd-1186f7efa72a86a7000dce60b090bd4f822cdceb.tar.bz2 openocd_libswd-1186f7efa72a86a7000dce60b090bd4f822cdceb.tar.xz openocd_libswd-1186f7efa72a86a7000dce60b090bd4f822cdceb.zip |
target: less implicit inclusion of "command.h"
Lots of files still include it, often through needless
duplicate inclusion of "log.h"; sigh.
This cleans up the inclusion graph a bunch, so there are
fewer inclusion paths, but it doesn't change much otherwise.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/helper')
-rw-r--r-- | src/helper/log.c | 1 | ||||
-rw-r--r-- | src/helper/options.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/helper/log.c b/src/helper/log.c index c6906543..5a65c87e 100644 --- a/src/helper/log.c +++ b/src/helper/log.c @@ -27,7 +27,6 @@ #include "config.h" #endif -#include "log.h" #include "time_support.h" // @todo the inclusion of server.h here is a layering violation #include "server.h" diff --git a/src/helper/options.c b/src/helper/options.c index 3ffc6736..e26782ff 100644 --- a/src/helper/options.c +++ b/src/helper/options.c @@ -25,7 +25,6 @@ #endif #include "configuration.h" -#include "log.h" // @todo the inclusion of server.h here is a layering violation #include "server.h" |