summaryrefslogtreecommitdiffstats
path: root/cpukit/include
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2006-12-13 07:21:53 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2006-12-13 07:21:53 +0000
commit7ecaafa0d8bac4354be8ee7ca84de947dd621ac7 (patch)
tree56f44db5fcece4b07aa790608fd2c0755970fa1f /cpukit/include
parentAbandon DEPRECATED_TYPES/--enable-deprecated. (diff)
downloadrtems-7ecaafa0d8bac4354be8ee7ca84de947dd621ac7.tar.bz2
Abandon DEPRECATED_TYPES.
Diffstat (limited to 'cpukit/include')
-rw-r--r--cpukit/include/rtems/stdint.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/cpukit/include/rtems/stdint.h b/cpukit/include/rtems/stdint.h
index cdd4934198..54f067a329 100644
--- a/cpukit/include/rtems/stdint.h
+++ b/cpukit/include/rtems/stdint.h
@@ -21,20 +21,4 @@
#include <inttypes.h>
#endif
-#if RTEMS_DEPRECATED_TYPES
-typedef uint8_t unsigned8; /* unsigned 8-bit integer */
-typedef uint16_t unsigned16; /* unsigned 16-bit integer */
-typedef uint32_t unsigned32; /* unsigned 32-bit integer */
-#if 0
-typedef uint64_t unsigned64; /* unsigned 64-bit integer */
-#endif
-
-typedef int8_t signed8; /* signed 8-bit integer */
-typedef int16_t signed16; /* signed 16-bit integer */
-typedef int32_t signed32; /* signed 32-bit integer */
-#if 0
-typedef int64_t signed64; /* signed 64-bit integer */
-#endif
-#endif
-
#endif