The name of the test support routine pause was changed to rtems_test_pause

to avoid conflict with the standard POSIX routine pause(2).
This commit is contained in:
Joel Sherrill
1996-02-22 20:14:36 +00:00
parent 66d9e3ad29
commit ba3911317a
26 changed files with 76 additions and 84 deletions

View File

@@ -69,7 +69,7 @@ extern "C" {
#define puts_nocr printf
#define pause() \
#define rtems_test_pause() \
do { \
char buffer[ 80 ]; \
printf( "<pause>" ); fflush( stdout ); \
@@ -77,7 +77,7 @@ extern "C" {
puts( "" ); \
} while ( 0 )
#define pause_and_screen_number( _screen ) \
#define rtems_test_pause_and_screen_number( _screen ) \
do { \
char buffer[ 80 ]; \
printf( "<pause - screen %d>", (_screen) ); fflush( stdout ); \