JustOS/linux-6.13/arch/mips/boot/compressed/uart-prom.c
justuser 02e73b8cd9 up
2025-01-24 17:00:19 +03:00

10 lines
125 B
C

// SPDX-License-Identifier: GPL-2.0
#include <asm/setup.h>
#include "decompress.h"
void putc(char c)
{
prom_putchar(c);
}