forked from KolibriOS/kolibrios
b5b499b8c8
Move to folder with tcc. Part 1 git-svn-id: svn://kolibrios.org@8793 a494cfbc-eb01-0410-851d-a64ba20cac60
13 lines
157 B
C
13 lines
157 B
C
#include <stdio.h>
|
|
#include <conio.h>
|
|
|
|
int getchar(void) {
|
|
con_init();
|
|
char c = 0;
|
|
con_gets(&c, 2);
|
|
if (c == 0) {
|
|
c = EOF;
|
|
}
|
|
return c;
|
|
}
|