Linux Audio

Check our new training course

Real-Time Linux with PREEMPT_RT training

Feb 18-20, 2025
Register
Loading...
v4.17
1// SPDX-License-Identifier: GPL-2.0
 
2
3extern void prom_putchar(unsigned char ch);
4
5void putc(char c)
6{
7	prom_putchar(c);
8}
v6.13.7
1// SPDX-License-Identifier: GPL-2.0
2#include <asm/setup.h>
3
4#include "decompress.h"
5
6void putc(char c)
7{
8	prom_putchar(c);
9}