summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/ChangeLog6
-rw-r--r--cpukit/include/Makefile.am3
-rw-r--r--cpukit/include/rtems/stdint.h35
3 files changed, 43 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 39f6446b89..f90b92cf40 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,11 @@
2003-05-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+ PR 409:
+ * include/Makefile.am: Add rtems/stdint.h
+ * include/rtems/stdint.h: New.
+
+2003-05-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
PR 321:
* aclocal/env-rtemscpu.m4: Remove support for profile-variant.
* automake/compile.am: Ditto.
diff --git a/cpukit/include/Makefile.am b/cpukit/include/Makefile.am
index c47b90bfa3..ddb913991a 100644
--- a/cpukit/include/Makefile.am
+++ b/cpukit/include/Makefile.am
@@ -16,7 +16,8 @@ PREINSTALL_FILES = $(PROJECT_INCLUDE) \
$(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
include_rtemsdir = $(includedir)/rtems
-include_rtems_HEADERS = rtems/bspIo.h rtems/userenv.h rtems/fs.h
+include_rtems_HEADERS = rtems/bspIo.h rtems/userenv.h rtems/fs.h \
+ rtems/stdint.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems \
$(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/%)
diff --git a/cpukit/include/rtems/stdint.h b/cpukit/include/rtems/stdint.h
new file mode 100644
index 0000000000..0922d45d1c
--- /dev/null
+++ b/cpukit/include/rtems/stdint.h
@@ -0,0 +1,35 @@
+/*
+ * rtems/stdint.h
+ *
+ * ISO C99 integer types
+ *
+ * $Id$
+ */
+
+#ifndef __rtems_stdint_h
+#define __rtems_stdint_h
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <rtems/score/types.h>
+
+/*
+ * map RTEMS internal types onto C99 types
+ */
+typedef signed8 int8_t;
+typedef signed16 int16_t;
+typedef signed32 int32_t;
+typedef signed64 int64_t;
+
+typedef unsigned8 uint8_t;
+typedef unsigned16 uint16_t;
+typedef unsigned32 uint32_t;
+typedef unsigned64 uint64_t;
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif