diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-05-11 04:30:41 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-05-11 04:30:41 +0000 |
commit | fbcb57baf842a84898dcc1cbe9a8b56d2a0028e1 (patch) | |
tree | 9468a8c2fd8ed83ff2d6643e4f6f3e80a92240c5 /src/flash/flash.c | |
parent | 0643263d68bcddc56eaa7e3678b7502798410711 (diff) | |
download | openocd_libswd-fbcb57baf842a84898dcc1cbe9a8b56d2a0028e1.tar.gz openocd_libswd-fbcb57baf842a84898dcc1cbe9a8b56d2a0028e1.tar.bz2 openocd_libswd-fbcb57baf842a84898dcc1cbe9a8b56d2a0028e1.tar.xz openocd_libswd-fbcb57baf842a84898dcc1cbe9a8b56d2a0028e1.zip |
Audit and eliminate redundant #include directives in src/flash sources.
git-svn-id: svn://svn.berlios.de/openocd/trunk@1712 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/flash/flash.c')
-rw-r--r-- | src/flash/flash.c | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/src/flash/flash.c b/src/flash/flash.c index 0ad6c7a6..4f4d272a 100644 --- a/src/flash/flash.c +++ b/src/flash/flash.c @@ -28,22 +28,9 @@ #endif #include "flash.h" -#include "command.h" -#include "target.h" -#include "time_support.h" -#include "fileio.h" #include "image.h" -#include "log.h" -#include "armv4_5.h" -#include "algorithm.h" -#include "binarybuffer.h" -#include "armv7m.h" - -#include <string.h> -#include <unistd.h> -#include <stdlib.h> -#include <sys/stat.h> -#include <errno.h> +#include "time_support.h" + #include <inttypes.h> /* command handlers */ |