summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-11-10 05:26:07 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-11-10 05:26:07 +0000
commitcc349f036a19f71b3e246ca578a300071ddcee58 (patch)
treebc3a0146d71c4f8e884d6098cff28681e7b8e9a3 /cpukit
parentNeed to install vme_am_defs.h. (diff)
downloadrtems-cc349f036a19f71b3e246ca578a300071ddcee58.tar.bz2
2005-11-10 Ralf Corsepius <ralf.corsepius@rtems.org>
* include/rtems/stdint.h: Disable RTEMS proprietary fixed-size types.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/include/rtems/stdint.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 417ac67150..9740e799ea 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,7 @@
+2005-11-10 Ralf Corsepius <ralf.corsepius@rtems.org>
+
+ * include/rtems/stdint.h: Disable RTEMS proprietary fixed-size types.
+
2005-11-08 Ralf Corsepius <ralf.corsepius@rtems.org>
* configure.ac: Add RTEMS_NETWORKING to cpuopts.h.
diff --git a/cpukit/include/rtems/stdint.h b/cpukit/include/rtems/stdint.h
index 1d8add2524..cdd4934198 100644
--- a/cpukit/include/rtems/stdint.h
+++ b/cpukit/include/rtems/stdint.h
@@ -21,6 +21,7 @@
#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 */
@@ -34,5 +35,6 @@ typedef int32_t signed32; /* signed 32-bit integer */
#if 0
typedef int64_t signed64; /* signed 64-bit integer */
#endif
+#endif
#endif