Subversion Repositories Kolibri OS

Rev

Rev 6424 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6429 siemargl 1
#include 
6424 siemargl 2
 
3
int putchar ( int ch )
4
{
6429 siemargl 5
	char s[2];
6
 
7
	con_init_console_dll();
8
 
9
	s[0] = (char)ch;
10
	s[1] = '\0';
11
 
12
	con_write_asciiz(s);
6424 siemargl 13
	return ch;
14
}