view target-utils/libprintf/sprintf_putchar.c @ 43:eee03b6ac615

loadagent: buglet in the ML command was breaking fc-xram; fixed
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Mon, 17 Jun 2013 07:28:51 +0000
parents 40f607bb0a2c
children 84611183c8c3
line wrap: on
line source

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