Increase queue size to 64.
[pintos-anon] / src / devices / kbd.h
index b32b63117cd5264ea2d797da0c5b0ce5d039111d..1720d365335ed12249a29a9a19942282d6c04600 100644 (file)
@@ -1,6 +1,9 @@
 #ifndef DEVICES_KBD_H
 #define DEVICES_KBD_H
 
+#include <stdint.h>
+
 void kbd_init (void);
+uint8_t kbd_getc (void);
 
 #endif /* devices/kbd.h */