summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/h8300/rtems/score/types.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-11-08 19:01:45 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-11-08 19:01:45 +0000
commit7a3f0188b55606f65aa20b64f7dce465ddfc61e4 (patch)
tree00cbac873eb4b20a2b7fb170e56eee5c902eb779 /cpukit/score/cpu/h8300/rtems/score/types.h
parent2005-11-08 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-7a3f0188b55606f65aa20b64f7dce465ddfc61e4.tar.bz2
2005-11-08 Ralf Corsepius <ralf.corsepius@rtems.org>
* rtems/score/types.h: Eliminate unsigned16, unsigned32.
Diffstat (limited to 'cpukit/score/cpu/h8300/rtems/score/types.h')
-rw-r--r--cpukit/score/cpu/h8300/rtems/score/types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/cpu/h8300/rtems/score/types.h b/cpukit/score/cpu/h8300/rtems/score/types.h
index 6b73ba5e17..33d9420ebe 100644
--- a/cpukit/score/cpu/h8300/rtems/score/types.h
+++ b/cpukit/score/cpu/h8300/rtems/score/types.h
@@ -33,11 +33,11 @@ extern "C" {
typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
-typedef unsigned16 Priority_Bit_map_control;
+typedef uint16_t Priority_Bit_map_control;
typedef signed long long signed64; /* 64 bit signed integer */
-typedef unsigned32 boolean; /* Boolean value */
+typedef uint32_t boolean; /* Boolean value */
typedef float single_precision; /* single precision float */
typedef double double_precision; /* double precision float */