aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/stdio/getch.c
blob: 908a8716af2397dccd20205ad6117cdde1c6f984 (plain) (blame)
1
2
3
4
5
6
#include <syscall.h>

char getch()
{
	return (char)syscall_readc();
}