Welcome to mirror list, hosted at ThFree Co, Russian Federation.

linux-outbyte.c « microblaze « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d7bc4890681c7f843568c39afd3583fc3dce1be (plain)
1
2
3
4
void outbyte (unsigned char c)
{
	_write(1, &c, 1);
}