summaryrefslogtreecommitdiffstats
path: root/testsuites/support/include/buffer_test_io.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-11-22 16:07:01 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-11-22 16:07:01 +0000
commit51dc9b5116184600d37091e0076c00a5fc316741 (patch)
treefee2db53e397c6a6b5270ebdb8a8088dbd68db37 /testsuites/support/include/buffer_test_io.h
parent2004-11-22 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-51dc9b5116184600d37091e0076c00a5fc316741.tar.bz2
2004-11-22 Ralf Corsepius <ralf_corsepius@rtems.org>
* include/buffer_test_io.h: Use iprintf iff _NEWLIB_VERSION is defined.
Diffstat (limited to 'testsuites/support/include/buffer_test_io.h')
-rw-r--r--testsuites/support/include/buffer_test_io.h2
1 files changed, 1 insertions, 1 deletions
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 { \