summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/support/ChangeLog5
-rw-r--r--testsuites/support/include/buffer_test_io.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/testsuites/support/ChangeLog b/testsuites/support/ChangeLog
index 328e36aa4f..bee0d58269 100644
--- a/testsuites/support/ChangeLog
+++ b/testsuites/support/ChangeLog
@@ -1,3 +1,8 @@
+2004-11-22 Ralf Corsepius <ralf_corsepius@rtems.org>
+
+ * include/buffer_test_io.h: Use iprintf iff _NEWLIB_VERSION is
+ defined.
+
2004-09-24 Ralf Corsepius <ralf_corsepius@rtems.org>
* configure.ac: Require automake > 1.9.
diff --git a/testsuites/support/include/buffer_test_io.h b/testsuites/support/include/buffer_test_io.h
index 18902424f0..764170710c 100644
--- a/testsuites/support/include/buffer_test_io.h
+++ b/testsuites/support/include/buffer_test_io.h
@@ -23,7 +23,7 @@ extern "C" {
#if !defined(TESTS_BUFFER_OUTPUT)
/* do not use iprintf if strict ansi mode */
-#ifndef __STRICT_ANSI__
+#if defined(_NEWLIB_VERSION) && !defined(__STRICT_ANSI__)
#undef printf
#define printf(...) \
do { \