mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 04:49:25 +08:00
5 lines
54 B
C
5 lines
54 B
C
|
void outbyte (unsigned char c)
|
||
|
{
|
||
|
_write(1, &c, 1);
|
||
|
}
|