Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #include <shell_api.h>
  2.  
  3. void shell_putc(char c)
  4. {
  5.     __shell_init();
  6.     *__shell_shm = SHELL_PUTC;
  7.     *(__shell_shm+1) = c;
  8.     __SHELL_WAIT();
  9. }