Subversion Repositories Kolibri OS

Rev

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

  1. #include <conio.h>
  2.  
  3. int putchar ( int ch )
  4. {
  5.         char s[2];
  6.  
  7.         con_init_console_dll();
  8.        
  9.         s[0] = (char)ch;
  10.         s[1] = '\0';
  11.  
  12.         con_write_asciiz(s);
  13.         return ch;
  14. }