Merge pull request #7034 from TomoYamanaka/master

Fix redeclaration of type name "bool_t" for Renesas
pull/6752/merge
Cruz Monrreal 2018-05-29 10:44:29 -05:00 committed by GitHub
commit 231f4cf9c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;