aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/stdio/putch.c
blob: f87680e9b9508edffd25d4a0628c2959db86b91c (plain) (blame)
1
2
3
4
5
6
7
8
#include <syscall.h>

void putch(char ch)
{
	// TODO: Implement framebuffer writing
	//if (ch != 0)
	//syscall_putch(ch);
}