view target-utils/libprintf/putchar.c @ 860:cbc49d533b7d

gsm-fw: new implementation of bzero() and some specialized bcopy variants
author Space Falcon <falcon@ivan.Harhan.ORG>
date Sun, 03 May 2015 04:11:41 +0000
parents 40f607bb0a2c
children
line wrap: on
line source

extern void serial_out();

void
putchar(ch)
{
	if (ch == '\n')
		serial_out('\r');
	serial_out(ch);
}