Exemplo n.º 1
0
int kputchar(int c)
{
    kputbuf[kcount++] = c;
    if (kcount == KPBUFSZ || c == '\n')
        kflush();
    return c;
}
Exemplo n.º 2
0
Arquivo: kputchar.c Projeto: gm561/aos
void kprintf_end(void)
{
    kflush();
}