Subversion Repositories Kolibri OS

Rev

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

  1. #include <conio.h>
  2.  
  3. int puts ( const char * str )
  4. {
  5.         con_init_console_dll();
  6.        
  7.         con_write_asciiz(str);
  8.         con_write_asciiz("\n");
  9.  
  10.         return 1;
  11. }