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

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