summaryrefslogtreecommitdiffstats
path: root/cpukit/itron
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-07 07:04:38 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-07 07:04:38 +0000
commit5b2be34998da939e327419505e4645b75caeb6e7 (patch)
tree0b14a31cd4fe797cf9d2a484840e522d2aad9e7d /cpukit/itron
parent2008-09-07 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-5b2be34998da939e327419505e4645b75caeb6e7.tar.bz2
Eliminate "boolean".
Diffstat (limited to 'cpukit/itron')
-rw-r--r--cpukit/itron/include/itronsys/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/itron/include/itronsys/types.h b/cpukit/itron/include/itronsys/types.h
index 2c8347ef68..a580bf4ffb 100644
--- a/cpukit/itron/include/itronsys/types.h
+++ b/cpukit/itron/include/itronsys/types.h
@@ -59,7 +59,7 @@ typedef void (*FP)(void); /* program start address */
typedef int32_t INT; /* Signed integer (bit width of processor) */
typedef uint32_t UINT; /* Unsigned integer (bit width of processor) */
-typedef boolean BOOL; /* Boolean value. TRUE (1) or FALSE (0). */
+typedef bool BOOL; /* Boolean value. TRUE (1) or FALSE (0). */
typedef int16_t FN; /* Function code. Signed integer. Maximum 2 bytes. */
typedef int ID; /* Object ID number (???id) */
/* Value range depends on the system. Usually */