=================================================================== RCS file: /cvs/prex/boot/common/debug.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- prex/boot/common/debug.c 2008/08/19 13:46:47 1.1 +++ prex/boot/common/debug.c 2008/09/13 00:49:30 1.2 @@ -78,6 +78,14 @@ continue; } } +#ifdef PRINTF_CRLF + /* add form-feed to carriage return */ + if ((char)c == '\n') { + putchar('\r'); + putchar('\f'); + } else +#endif /* PRINTF_CRLF */ + putchar((int)c); } va_end(ap);