Fix redeclaration of type name "bool_t"

I fixed redeclaration of type name "bool_t" for target Renesas because this typedef has been defined in rtx_core_ca.h by #6273.
pull/7034/head
TomoYamanaka 2018-05-28 18:55:13 +09:00
parent 9c62ea311d
commit f34857792a
1 changed files with 3 additions and 1 deletions

View File

@ -51,7 +51,9 @@ typedef double float64_t;
Typedef definitions
******************************************************************************/
typedef char char_t;
typedef int bool_t;
#ifndef bool_t
typedef bool bool_t;
#endif
typedef int int_t;
typedef long double float128_t;
typedef signed long long_t;