view target-utils/libprintf/sprintf_putchar.c @ 628:c2f2f7d78451

rvinterf: log sent GPF packets with the same decoding as received ones
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Mon, 01 Sep 2014 07:42:59 +0000
parents 84611183c8c3
children
line wrap: on
line source

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