uart-prom.c 86 B

1234567
  1. extern void prom_putchar(unsigned char ch);
  2. void putc(char c)
  3. {
  4. prom_putchar(c);
  5. }