diff --git a/jtag/ChangeLog b/jtag/ChangeLog index 74e3fd5e..6276578e 100644 --- a/jtag/ChangeLog +++ b/jtag/ChangeLog @@ -1,3 +1,10 @@ +2003-02-20 Marcel Telka + + * src/Makefile.am (jtag_SOURCES): Added missing flash.h. + * src/jtag.c: Added missing string.h include. Moved gettext.h include + to the top level of the include list. + * src/help.c: Moved gettext.h include to the top level of the include list. + 2003-02-20 Marcel Telka * Makefile.am (SUBDIRS): Removed intl. diff --git a/jtag/src/Makefile.am b/jtag/src/Makefile.am index d5a869d4..f0291f1a 100644 --- a/jtag/src/Makefile.am +++ b/jtag/src/Makefile.am @@ -36,6 +36,7 @@ jtag_SOURCES = \ readmem.c \ detect.h \ cfi.c \ + flash.h \ flash.c \ flash-intel.c \ flash-amd.c \ diff --git a/jtag/src/help.c b/jtag/src/help.c index 2eab8892..cd66b07b 100644 --- a/jtag/src/help.c +++ b/jtag/src/help.c @@ -26,11 +26,11 @@ #include #endif +#include "gettext.h" + #include #include -#include "gettext.h" - #include "cable.h" #include "flash.h" diff --git a/jtag/src/jtag.c b/jtag/src/jtag.c index d10ae245..9064902d 100644 --- a/jtag/src/jtag.c +++ b/jtag/src/jtag.c @@ -26,15 +26,16 @@ #include #endif +#include "gettext.h" + #include #include +#include #include #include #include #include -#include "gettext.h" - #include "part.h" #include "cable.h" #include "tap.h"