blob: f1e4dfbfaaf02b4c802e583a5b7db7059c3a4290 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include <stdint.h>
#include <kernel/lib/stdio.h>
#include <kernel/input/input.h>
#include <kernel/lib/lib.h>
#include <kernel/lib/string.h>
uint32_t sys_getch()
{
return (uint32_t)getch();
}
|