summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-12-11 08:32:48 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-12-11 08:32:48 +0000
commitd0e2fa3e42ae409687c926a1e42eace57be75896 (patch)
tree875c9a3c7cc39c97c9433c5cfd61fd0db56b0449 /c
parent2008-12-11 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-d0e2fa3e42ae409687c926a1e42eace57be75896.tar.bz2
#include <stdint.h> instead of <rtems/stdint.h>.
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libcpu/arm/lpc22xx/include/lpc22xx.h2
-rw-r--r--c/src/lib/libcpu/arm/mc9328mxl/include/mc9328mxl.h2
-rw-r--r--c/src/libchip/network/smc91111config.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/c/src/lib/libcpu/arm/lpc22xx/include/lpc22xx.h b/c/src/lib/libcpu/arm/lpc22xx/include/lpc22xx.h
index da11ca876e..d5a021a34a 100644
--- a/c/src/lib/libcpu/arm/lpc22xx/include/lpc22xx.h
+++ b/c/src/lib/libcpu/arm/lpc22xx/include/lpc22xx.h
@@ -13,7 +13,7 @@
#ifndef __LPC22XX_H__
#define __LPC22XX_H__
-#include <rtems/stdint.h>
+#include <stdint.h>
/* EXTERNAL MEMORY CONTROLLER (EMC) */
#define BCFG0 (*((volatile unsigned int *) 0xFFE00000)) /* lpc22xx only */
diff --git a/c/src/lib/libcpu/arm/mc9328mxl/include/mc9328mxl.h b/c/src/lib/libcpu/arm/mc9328mxl/include/mc9328mxl.h
index e03916e9fd..6aebf0928c 100644
--- a/c/src/lib/libcpu/arm/mc9328mxl/include/mc9328mxl.h
+++ b/c/src/lib/libcpu/arm/mc9328mxl/include/mc9328mxl.h
@@ -14,7 +14,7 @@
#ifndef __MC9328MXL_H__
#define __MC9328MXL_H__
-#include <rtems/stdint.h>
+#include <stdint.h>
#define bit(_x_) (1 << (_x_))
diff --git a/c/src/libchip/network/smc91111config.h b/c/src/libchip/network/smc91111config.h
index 82e8021586..195408a0d2 100644
--- a/c/src/libchip/network/smc91111config.h
+++ b/c/src/libchip/network/smc91111config.h
@@ -40,7 +40,7 @@
/* ----------------- compat layer ----------------- */
-#include <rtems/stdint.h>
+#include <stdint.h>
typedef uint32_t CYG_WORD;
typedef uint8_t CYG_BYTE;