2
0
mirror of git://git.code.sf.net/p/openocd/code synced 2025-07-18 20:07:08 +10:00

C99 Type updates, include inttypes.h - it is catagorically required

git-svn-id: svn://svn.berlios.de/openocd/trunk@2296 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
duane 2009-06-21 02:59:39 +00:00
parent 5f48cefb10
commit 836b6c18f0

View File

@ -29,6 +29,9 @@
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif
typedef struct jtag_tap_s jtag_tap_t;