summaryrefslogtreecommitdiff
path: root/src/helper
diff options
context:
space:
mode:
authorduane <duane@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-21 02:59:39 +0000
committerduane <duane@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-21 02:59:39 +0000
commit836b6c18f08d8a6c123224f9f21bb6d98900cfa1 (patch)
treee4c028448535b5165919fd325ca6e0e6a6f20b94 /src/helper
parent5f48cefb108fb22e64521c4a4d24c2646a0a9490 (diff)
downloadopenocd+libswd-836b6c18f08d8a6c123224f9f21bb6d98900cfa1.tar.gz
openocd+libswd-836b6c18f08d8a6c123224f9f21bb6d98900cfa1.tar.bz2
openocd+libswd-836b6c18f08d8a6c123224f9f21bb6d98900cfa1.tar.xz
openocd+libswd-836b6c18f08d8a6c123224f9f21bb6d98900cfa1.zip
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
Diffstat (limited to 'src/helper')
-rw-r--r--src/helper/types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/helper/types.h b/src/helper/types.h
index 11b97f61..b32850cc 100644
--- a/src/helper/types.h
+++ b/src/helper/types.h
@@ -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;