view target-utils/libprintf/sprintf_putchar.c @ 496:3d73d4d3527f

target-utils: removed osmo_delay_ms() from ABB access code
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 25 May 2019 20:17:27 +0000
parents e7502631a0f9
children
line wrap: on
line source

void
_sprintf_putchar(ch, pp)
	int ch;
	char **pp;
{
	*(*pp)++ = ch;
}