SmartAudio/lichee/linux-4.9/arch/mips/boot/compressed/uart-prom.c

8 lines
86 B
C
Raw Normal View History

2018-07-13 01:31:50 +00:00
extern void prom_putchar(unsigned char ch);
void putc(char c)
{
prom_putchar(c);
}