uart-prom.c 86 B

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