summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-09-30 06:15:39 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-09-30 06:15:39 +0000
commita13c3df9fa1ebadb6d2bc784ac2d8348c6e1ac2a (patch)
tree6b828eecb921ee0095514e9a02464aefa7118e9f /cpukit
parent2009-09-30 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-a13c3df9fa1ebadb6d2bc784ac2d8348c6e1ac2a.tar.bz2
Rework autoconf defines.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/libcsupport/src/_calloc_r.c2
-rw-r--r--cpukit/libcsupport/src/_realloc_r.c2
-rw-r--r--cpukit/libcsupport/src/close.c2
-rw-r--r--cpukit/libcsupport/src/open.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/libcsupport/src/_calloc_r.c b/cpukit/libcsupport/src/_calloc_r.c
index 5e1b43bb2f..1b515d2464 100644
--- a/cpukit/libcsupport/src/_calloc_r.c
+++ b/cpukit/libcsupport/src/_calloc_r.c
@@ -15,7 +15,7 @@
#include "config.h"
#endif
-#ifdef RTEMS_NEWLIB
+#if defined(RTEMS_NEWLIB) && !defined(HAVE__CALLOC_R)
#include <sys/reent.h>
#include <stdlib.h>
diff --git a/cpukit/libcsupport/src/_realloc_r.c b/cpukit/libcsupport/src/_realloc_r.c
index 93c2d1bf9d..78c9faf351 100644
--- a/cpukit/libcsupport/src/_realloc_r.c
+++ b/cpukit/libcsupport/src/_realloc_r.c
@@ -15,7 +15,7 @@
#include "config.h"
#endif
-#ifdef RTEMS_NEWLIB
+#if defined(RTEMS_NEWLIB) && !defined(HAVE__REALLOC_R)
#include <sys/reent.h>
#include <stdlib.h>
diff --git a/cpukit/libcsupport/src/close.c b/cpukit/libcsupport/src/close.c
index a99b852feb..b1ee7ef223 100644
--- a/cpukit/libcsupport/src/close.c
+++ b/cpukit/libcsupport/src/close.c
@@ -44,7 +44,7 @@ int close(
* This is the Newlib dependent reentrant version of close().
*/
-#if defined(RTEMS_NEWLIB)
+#if defined(RTEMS_NEWLIB) && !defined(HAVE__CLOSE_R)
#include <reent.h>
diff --git a/cpukit/libcsupport/src/open.c b/cpukit/libcsupport/src/open.c
index 39be14a9e3..6b957464f7 100644
--- a/cpukit/libcsupport/src/open.c
+++ b/cpukit/libcsupport/src/open.c
@@ -208,7 +208,7 @@ done:
* This is the Newlib dependent reentrant version of open().
*/
-#if defined(RTEMS_NEWLIB)
+#if defined(RTEMS_NEWLIB) && !defined(HAVE__OPEN_R)
#include <reent.h>