Subversion Repositories Kolibri OS

Rev

Rev 8464 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #include <stdarg.h>
  2. #include <stdio.h>
  3. #include <kolibrisys.h>
  4.  
  5. void debug_printf(const char *format,...)
  6. {
  7.         va_list ap;
  8.         char log_board[300];
  9.         va_start (ap, format);
  10.         vsnprintf(log_board, sizeof log_board, format, ap);
  11.         va_end(ap);
  12.         debug_out_str(log_board);
  13. }
  14.