Subversion Repositories Kolibri OS

Rev

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

  1. #include <stdio.h>
  2. #include "conio.h"
  3.  
  4. int getchar(void) {
  5.         int c = __con_getch();
  6.         if (c == 0) {
  7.                 c = EOF;
  8.         }
  9.         return c;
  10. }
  11.