summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/include/stdint.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-11-01 11:38:18 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-11-01 11:38:18 +0000
commite7ab8899cd31959623320e339d16296fdbf44136 (patch)
tree17b95b2bdac0877ed6e2dd70f526be1748823171 /cpukit/libcsupport/include/stdint.h
parent2004-11-01 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-e7ab8899cd31959623320e339d16296fdbf44136.tar.bz2
2004-11-01 Ralf Corsepius <ralf_corsepius@rtems.org>
* configure.ac: Remove -ansi (Cygwin breaks with it). * libcsupport/include/stdint.h: Use sys/_stdint.h to setup fixed size types. * libcsupport/include/sys/_inttypes.h: Add SCN*N macros.
Diffstat (limited to 'cpukit/libcsupport/include/stdint.h')
-rw-r--r--cpukit/libcsupport/include/stdint.h18
1 files changed, 1 insertions, 17 deletions
diff --git a/cpukit/libcsupport/include/stdint.h b/cpukit/libcsupport/include/stdint.h
index 9720cfbba0..1277aae4be 100644
--- a/cpukit/libcsupport/include/stdint.h
+++ b/cpukit/libcsupport/include/stdint.h
@@ -13,23 +13,7 @@
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;
-
-typedef signed long intptr_t;
-typedef unsigned long uintptr_t;
+#include <sys/_stdint.h>
#ifdef __cplusplus
}