summaryrefslogtreecommitdiff
path: root/kbd.c
diff options
context:
space:
mode:
Diffstat (limited to 'kbd.c')
-rw-r--r--kbd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kbd.c b/kbd.c
index 2483949..32c1463 100644
--- a/kbd.c
+++ b/kbd.c
@@ -4,7 +4,7 @@
#include "kbd.h"
int
-kbd_getc(void)
+kbdgetc(void)
{
static uint shift;
static uchar *charcode[4] = {
@@ -44,7 +44,7 @@ kbd_getc(void)
}
void
-kbd_intr(void)
+kbdintr(void)
{
- console_intr(kbd_getc);
+ consoleintr(kbdgetc);
}