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

char getch()
{
    // return ((char *) syscall_read())[0];
    return 0;
}