Implement a proper block layer with partition support.
[pintos-anon] / src / devices / kbd.h
index f08ef74a58d97d6b23e3a552242a0adcd5604094..ed9c06bc90d2a03fd9f48c6d245bdcc22770d859 100644 (file)
@@ -1,6 +1,9 @@
-#ifndef HEADER_KBD_H
-#define HEADER_KBD_H 1
+#ifndef DEVICES_KBD_H
+#define DEVICES_KBD_H
+
+#include <stdint.h>
 
 void kbd_init (void);
+void kbd_print_stats (void);
 
-#endif /* kbd.h */
+#endif /* devices/kbd.h */