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: 908a8716af2397dccd20205ad6117cdde1c6f984 (
plain
) (
blame
)
1
2
3
4
5
6
#include <syscall.h> char getch() { return (char)syscall_readc(); }