5 lines
54 B
C
5 lines
54 B
C
|
void outbyte (unsigned char c)
|
||
|
{
|
||
|
_write(1, &c, 1);
|
||
|
}
|