summaryrefslogtreecommitdiff
path: root/src/kernel/arch/i386/tty/log.c
blob: 1a2d8749dfd7e24f0588473ab0f0a4583db9ba7d (plain)
1
2
3
4
5
6
#include <kernel/arch/i386/tty/vga.h>
#include <kernel/arch/log.h>

void log_write(const char *buf, size_t len) {
	tty_write(buf, len);
}