blob: 1c3d51bc90bb8b6f800261f5976e101830b8cae3 [file]
extern void prom_putchar(unsigned char ch);
void putc(char c)
{
prom_putchar(c);
}