X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fhelper%2Fcommand.h;h=e969ad96401aa7d2e3a7be33eec701d54392058e;hp=01316a1a56d1c23292ac2bb3ec8411f515e3916d;hb=191a5736c202dfb784e86a8190edc64e80dc62e5;hpb=7719e2188e89a93813caf2ac8cfd7457cb605631 diff --git a/src/helper/command.h b/src/helper/command.h index 01316a1a56..e969ad9640 100644 --- a/src/helper/command.h +++ b/src/helper/command.h @@ -18,21 +18,12 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * ***************************************************************************/ #ifndef COMMAND_H #define COMMAND_H -#include - -/* Integrate the JIM TCL interpretor into the command processing. */ -#if BUILD_ECOSBOARD -#include -#include -#endif - -#include #include /* To achieve C99 printf compatibility in MinGW, gnu_printf should be @@ -362,6 +353,7 @@ int parse_llong(const char *str, long long *ul); int parse ## name(const char *str, type * ul) DECLARE_PARSE_WRAPPER(_uint, unsigned); +DECLARE_PARSE_WRAPPER(_u64, uint64_t); DECLARE_PARSE_WRAPPER(_u32, uint32_t); DECLARE_PARSE_WRAPPER(_u16, uint16_t); DECLARE_PARSE_WRAPPER(_u8, uint8_t);