summaryrefslogtreecommitdiff
path: root/src/helper
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-18 10:42:40 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-18 10:42:40 +0000
commite8ba53ef6fd666e539a97b3a4d61394276f024a8 (patch)
tree175edc57de0cd14bdbc59b5365f388a485eea729 /src/helper
parent592e080690bf925185f3313280025509c5e7f4db (diff)
downloadopenocd+libswd-e8ba53ef6fd666e539a97b3a4d61394276f024a8.tar.gz
openocd+libswd-e8ba53ef6fd666e539a97b3a4d61394276f024a8.tar.bz2
openocd+libswd-e8ba53ef6fd666e539a97b3a4d61394276f024a8.tar.xz
openocd+libswd-e8ba53ef6fd666e539a97b3a4d61394276f024a8.zip
Oyvind Harboe <oyvind.harboe@zylin.com>:
Ecos uses sys/types.h not stdint.h. git-svn-id: svn://svn.berlios.de/openocd/trunk@2286 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper')
-rw-r--r--src/helper/types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/helper/types.h b/src/helper/types.h
index 75b2ad1b..11b97f61 100644
--- a/src/helper/types.h
+++ b/src/helper/types.h
@@ -26,7 +26,9 @@
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
+#ifdef HAVE_STDINT_H
#include <stdint.h>
+#endif
typedef struct jtag_tap_s jtag_tap_t;