2003-02-20 Marcel Telka <marcel@telka.sk>

* 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.


git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@377 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Marcel Telka 22 years ago
parent 307b9ff666
commit 170f1eeeff

@ -1,3 +1,10 @@
2003-02-20 Marcel Telka <marcel@telka.sk>
* 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 <marcel@telka.sk>
* Makefile.am (SUBDIRS): Removed intl.

@ -36,6 +36,7 @@ jtag_SOURCES = \
readmem.c \
detect.h \
cfi.c \
flash.h \
flash.c \
flash-intel.c \
flash-amd.c \

@ -26,11 +26,11 @@
#include <config.h>
#endif
#include "gettext.h"
#include <stdio.h>
#include <string.h>
#include "gettext.h"
#include "cable.h"
#include "flash.h"

@ -26,15 +26,16 @@
#include <config.h>
#endif
#include "gettext.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <readline/readline.h>
#include <readline/history.h>
#include "gettext.h"
#include "part.h"
#include "cable.h"
#include "tap.h"

Loading…
Cancel
Save