index
:
marvinborner/Melvix
dev
:computer: Small operating system written from scratch (covid/school project)
Marvin
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
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(); }