view target-utils/libprintf/sprintf_putchar.c @ 143:afceeeb2cba1

Our nuc-fw is destined to become gsm-fw, so I went ahead and did the big hg mv
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Tue, 12 Nov 2013 05:35:48 +0000
parents 40f607bb0a2c
children 84611183c8c3
line wrap: on
line source

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