mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #7034 from TomoYamanaka/master
Fix redeclaration of type name "bool_t" for Renesaspull/6752/merge
commit
231f4cf9c1
|
@ -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