Linux 4.15.10
[linux/fpc-iii.git] / arch / mips / boot / compressed / uart-prom.c
blobd6f0fee0a151a62329738428395d5e84bbc6029d
1 // SPDX-License-Identifier: GPL-2.0
3 extern void prom_putchar(unsigned char ch);
5 void putc(char c)
7 prom_putchar(c);