mirror of https://github.com/ARMmbed/mbed-os.git
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
parent
9c62ea311d
commit
f34857792a
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue