Changeset 6ccb466 in rtems for testsuites/support
- Timestamp:
- Feb 4, 2004, 12:40:24 AM (16 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, master
- Children:
- 76f3064a
- Parents:
- 39075eb2
- Location:
- testsuites/support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/support/ChangeLog
r39075eb2 r6ccb466 1 2004-02-03 Joel Sherrill <joel@OARcorp.com> 2 3 * include/buffer_test_io.h: Do not use iprintf() if in ANSI compiler 4 mode. 5 1 6 2004-01-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
testsuites/support/include/buffer_test_io.h
r39075eb2 r6ccb466 23 23 #if !defined(TESTS_BUFFER_OUTPUT) 24 24 25 /* do not use iprintf if strict ansi mode */ 26 #ifndef __STRICT_ANSI__ 25 27 #undef printf 26 28 #define printf(...) \ … … 28 30 iprintf( __VA_ARGS__); \ 29 31 } while (0) 32 #endif 30 33 31 34 #define rtems_test_exit(_s) \
Note: See TracChangeset
for help on using the changeset viewer.