view lldbg/putchar.c @ 45:a2d5d622e19e

sprintf/*.[ch]: author's gendered name corrected in the comments
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 29 Sep 2017 03:02:50 +0000
parents 75a11d740a02
children
line wrap: on
line source

extern void lldbg_serial_out();

void
lldbg_putchar(ch)
{
	if (ch == '\n')
		lldbg_serial_out('\r');
	lldbg_serial_out(ch);
}