[BACK]Return to debug.c CVS log [TXT][DIR] Up to [local] / prex / boot / common

Diff for /prex/boot/common/debug.c between version 1.1 and 1.2

version 1.1, 2008/08/19 13:46:47 version 1.2, 2008/09/13 00:49:30
Line 78 
Line 78 
                                 continue;                                  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);                  putchar((int)c);
         }          }
         va_end(ap);          va_end(ap);

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

CVSweb