|
From: <zw...@ma...> - 2009-06-18 12:42:49
|
Author: zwelch Date: 2009-06-18 12:42:40 +0200 (Thu, 18 Jun 2009) New Revision: 2286 Modified: trunk/src/helper/types.h Log: Oyvind Harboe <oyv...@zy...>: Ecos uses sys/types.h not stdint.h. Modified: trunk/src/helper/types.h =================================================================== --- trunk/src/helper/types.h 2009-06-18 10:40:33 UTC (rev 2285) +++ trunk/src/helper/types.h 2009-06-18 10:42:40 UTC (rev 2286) @@ -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; |