summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/avr/rtems/score/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/cpu/avr/rtems/score/types.h')
-rw-r--r--cpukit/score/cpu/avr/rtems/score/types.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/cpukit/score/cpu/avr/rtems/score/types.h b/cpukit/score/cpu/avr/rtems/score/types.h
index 7d8f2dc85e..c7f4b4ad90 100644
--- a/cpukit/score/cpu/avr/rtems/score/types.h
+++ b/cpukit/score/cpu/avr/rtems/score/types.h
@@ -31,18 +31,12 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-typedef uint8_t unsigned8; /* unsigned 8-bit integer */
-typedef uint16_t unsigned16; /* unsigned 16-bit integer */
-typedef uint32_t unsigned32; /* unsigned 32-bit integer */
typedef uint64_t unsigned64; /* unsigned 64-bit integer */
-typedef int8_t signed8; /* 8-bit signed integer */
-typedef int16_t signed16; /* 16-bit signed integer */
-typedef int32_t signed32; /* 32-bit signed integer */
-typedef int64_t signed64; /* 64 bit signed integer */
-
typedef unsigned16 Priority_Bit_map_control;
+typedef int64_t signed64; /* 64 bit signed integer */
+
typedef unsigned32 boolean; /* Boolean value */
typedef float single_precision; /* single precision float */