diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-18 10:42:40 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-18 10:42:40 +0000 |
commit | e8ba53ef6fd666e539a97b3a4d61394276f024a8 (patch) | |
tree | 175edc57de0cd14bdbc59b5365f388a485eea729 /src | |
parent | 592e080690bf925185f3313280025509c5e7f4db (diff) | |
download | riscv-openocd-e8ba53ef6fd666e539a97b3a4d61394276f024a8.zip riscv-openocd-e8ba53ef6fd666e539a97b3a4d61394276f024a8.tar.gz riscv-openocd-e8ba53ef6fd666e539a97b3a4d61394276f024a8.tar.bz2 |
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')
-rw-r--r-- | src/helper/types.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/helper/types.h b/src/helper/types.h index 75b2ad1..11b97f6 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; |