aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/input/input.h
diff options
context:
space:
mode:
authorMarvin Borner2020-04-29 19:21:29 +0200
committerMarvin Borner2020-04-29 19:21:29 +0200
commit4546c75d685475d8b9f215b588364e1d1bbd0b79 (patch)
tree2077f72ad46dfe877f7febdd0692edc139fd7937 /src/kernel/input/input.h
parent396d7d303d3bf0e796d0c817883ec1dec928352a (diff)
MUCH work in libc
Also cleaned up some syscalls etc
Diffstat (limited to 'src/kernel/input/input.h')
-rw-r--r--src/kernel/input/input.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/kernel/input/input.h b/src/kernel/input/input.h
index 172f0ae..d387172 100644
--- a/src/kernel/input/input.h
+++ b/src/kernel/input/input.h
@@ -1,6 +1,8 @@
#ifndef MELVIX_INPUT_H
#define MELVIX_INPUT_H
+#include <stdint.h>
+
/**
* Initialize the mouse IRQ handler
*/
@@ -12,6 +14,6 @@ void mouse_install();
*/
void keyboard_install();
-char keyboard_char_buffer;
+char wait_scancode();
#endif \ No newline at end of file