summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/arm/rtems/score/types.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/score/cpu/arm/rtems/score/types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpukit/score/cpu/arm/rtems/score/types.h b/cpukit/score/cpu/arm/rtems/score/types.h
index 43b5eb7c4b..d137153cfb 100644
--- a/cpukit/score/cpu/arm/rtems/score/types.h
+++ b/cpukit/score/cpu/arm/rtems/score/types.h
@@ -22,6 +22,7 @@
#ifndef ASM
+#include <stdbool.h>
#include <rtems/stdint.h>
#ifdef __cplusplus
@@ -32,7 +33,7 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-typedef uint32_t boolean; /* Boolean value */
+typedef bool boolean; /* Boolean value */
typedef uint16_t Priority_Bit_map_control;
typedef float single_precision; /* single precision float */