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

linux-inbyte.c « microblaze « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 58fdf1957331da0d9a46a21008b2365aa2aea2b5 (plain)
1
2
3
4
5
6
int inbyte(void)
{
	char ch = 0;
	read(0, &ch, 1);
	return ch;
}