Changeset 8d47a15 in rtems for c/src/tests
- Timestamp:
- 08/11/95 14:33:56 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 891e9c3
- Parents:
- 4cc631db
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/support/include/tmacros.h
r4cc631db r8d47a15 22 22 #endif 23 23 24 #include "bsp.h" 25 #include "stdio.h" 26 #include "stdlib.h" 27 #include "libcsupport.h" 24 #include <rtems.h> 25 #include <bsp.h> 26 27 #include <stdio.h> 28 #include <stdlib.h> 29 #include <libcsupport.h> 28 30 29 31 #define FOREVER 1 /* infinite loop */ … … 60 62 do { \ 61 63 char buffer[ 80 ]; \ 62 printf( "<pause> 64 printf( "<pause>" ); fflush( stdout ); \ 63 65 gets( buffer ); \ 64 66 puts( "" ); \ … … 68 70 do { \ 69 71 char buffer[ 80 ]; \ 70 printf( "<pause - screen 72 printf( "<pause - screen %d> ", (_screen) ); fflush( stdout ); \ 71 73 gets( buffer ); \ 72 74 puts( "" ); \
Note: See TracChangeset
for help on using the changeset viewer.