summaryrefslogtreecommitdiffstats
path: root/cpukit/include
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-01-24 16:13:15 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-01-24 16:13:15 +0000
commit9d7259a7cf6997dae1f00261d9c9d3f92332d5cf (patch)
tree6290e6de2efd286723b1951cd8f71bcf2099608b /cpukit/include
parent2005-01-24 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-9d7259a7cf6997dae1f00261d9c9d3f92332d5cf.tar.bz2
2005-01-24 Ralf Corsepius <ralf.corsepius@rtems.org>
* include/rtems/stdint.h: Add signed8, signed16, signed32, unsigned8, unsigned16, unsigned32.
Diffstat (limited to 'cpukit/include')
-rw-r--r--cpukit/include/rtems/stdint.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/cpukit/include/rtems/stdint.h b/cpukit/include/rtems/stdint.h
index 3abdcc4109..66a552662f 100644
--- a/cpukit/include/rtems/stdint.h
+++ b/cpukit/include/rtems/stdint.h
@@ -21,4 +21,18 @@
#include <inttypes.h>
#endif
+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