From: zwelch Date: Thu, 18 Jun 2009 07:11:48 +0000 (+0000) Subject: Remove redundant typedefs in types.h; include stdint.h unconditionally. X-Git-Tag: v0.2.0~232 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=4cf8d5ec177dd05919a5a5eb32625bf7a4a3bb3f;p=openocd 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 --- diff --git a/src/helper/types.h b/src/helper/types.h index ece56264..75b2ad1b 100644 --- a/src/helper/types.h +++ b/src/helper/types.h @@ -26,25 +26,7 @@ #ifdef HAVE_SYS_TYPES_H #include #endif -#ifdef HAVE_STDINT_H #include -#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;