aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_putch.c
blob: beaa4a27f0f4fcfcf18072b7013412bf504505bb (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <stdint.h>
#include <kernel/lib/stdio.h>
#include <kernel/lib/string.h>

uint32_t sys_putch(char ch)
{
	putch(ch);
	return 0;
}