Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
8687 turbocat 1
#include 
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
}