diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-18 07:11:48 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-18 07:11:48 +0000 |
commit | 4cf8d5ec177dd05919a5a5eb32625bf7a4a3bb3f (patch) | |
tree | 06d94cb430229c9aadfd5ed3569c2ced9553a9b4 /src/helper | |
parent | 0ca97d82d884a2c43b3bb4b3dd7ffcffa21719cc (diff) | |
download | riscv-openocd-4cf8d5ec177dd05919a5a5eb32625bf7a4a3bb3f.zip riscv-openocd-4cf8d5ec177dd05919a5a5eb32625bf7a4a3bb3f.tar.gz riscv-openocd-4cf8d5ec177dd05919a5a5eb32625bf7a4a3bb3f.tar.bz2 |
Remove redundant typedefs in types.h; include stdint.h unconditionally.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2283 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper')
-rw-r--r-- | src/helper/types.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/helper/types.h b/src/helper/types.h index ece5626..75b2ad1 100644 --- a/src/helper/types.h +++ b/src/helper/types.h @@ -26,25 +26,7 @@ #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> #endif -#ifdef HAVE_STDINT_H #include <stdint.h> -#endif - -#ifndef uint8_t -typedef unsigned char uint8_t; -#endif - -#ifndef uint16_t -typedef unsigned short uint16_t; -#endif - -#ifndef uint32_t -typedef unsigned int uint32_t; -#endif - -#ifndef uint64_t -typedef unsigned long long uint64_t; -#endif typedef struct jtag_tap_s jtag_tap_t; |