summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-05-27 16:33:01 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-05-27 16:33:01 +0000
commitfe661e4169e678660fd4ee853f05d263b6d6570c (patch)
tree36be1aef26b0df8779cc57fb424e6ec2e374a169
parent2003-05-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-fe661e4169e678660fd4ee853f05d263b6d6570c.tar.bz2
2003-05-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 409: * include/stdint.h: Include rtems/stdint.h
-rw-r--r--cpukit/libcsupport/ChangeLog5
-rw-r--r--cpukit/libcsupport/include/stdint.h10
2 files changed, 6 insertions, 9 deletions
diff --git a/cpukit/libcsupport/ChangeLog b/cpukit/libcsupport/ChangeLog
index 95d1773e9a..ef90ce528a 100644
--- a/cpukit/libcsupport/ChangeLog
+++ b/cpukit/libcsupport/ChangeLog
@@ -1,3 +1,8 @@
+2003-05-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ PR 409:
+ * include/stdint.h: Include rtems/stdint.h
+
2003-04-17 Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
PR 399/rtems_misc
diff --git a/cpukit/libcsupport/include/stdint.h b/cpukit/libcsupport/include/stdint.h
index dd2e490ef9..6dbfd44c0f 100644
--- a/cpukit/libcsupport/include/stdint.h
+++ b/cpukit/libcsupport/include/stdint.h
@@ -13,15 +13,7 @@
extern "C" {
#endif
-typedef signed char int8_t;
-typedef short int int16_t;
-typedef int int32_t;
-typedef long int int64_t;
-
-typedef unsigned char uint8_t;
-typedef unsigned short int uint16_t;
-typedef unsigned int uint32_t;
-typedef unsigned long int uint64_t;
+#include <rtems/stdint.h>
#ifdef __cplusplus
}