Changeset 6ffa9a57 in rtems


Ignore:
Timestamp:
02/04/04 00:39:47 (20 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Children:
0ddf39a4
Parents:
f347da9
Message:

2004-02-03 Joel Sherrill <joel@…>

  • include/buffer_test_io.h: Do not use iprintf() if in ANSI compiler mode.
Location:
c/src/tests/support
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/tests/support/ChangeLog

    rf347da9 r6ffa9a57  
     12004-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
    162003-12-16      Joel Sherrill <joel@OARcorp.com>
    27
  • c/src/tests/support/include/buffer_test_io.h

    rf347da9 r6ffa9a57  
    2323#if !defined(TESTS_BUFFER_OUTPUT)
    2424
     25/* do not use iprintf if strict ansi mode */
     26#ifndef __STRICT_ANSI__
    2527#undef printf
    2628#define printf(...) \
     
    2830     iprintf( __VA_ARGS__); \
    2931  } while (0)
     32#endif
    3033
    3134#define rtems_test_exit(_s) \
Note: See TracChangeset for help on using the changeset viewer.