diff --git a/src/sys/isa/atkbd.c b/src/sys/isa/atkbd.c index 640b50b..4da3dac 100644 --- a/src/sys/isa/atkbd.c +++ b/src/sys/isa/atkbd.c @@ -39,10 +39,10 @@ #include #include -unsigned int keyMap = 0; -unsigned int ledStatus = 0; +static unsigned int keyMap = 0; +static unsigned int ledStatus = 0; -unsigned int keyboardMap[][8] = { +static unsigned int keyboardMap[][8] = { /* Ascii, Shift, Ctrl, Alt, Num, Caps, Shift Caps, Shift Num */ { 0, 0, 0, 0, 0, 0, 0, 0}, /* ESC */ { 0x1B, 0x1B, 0x1B, 0x1B, 0x1B, 0x1B, 0x1B, 0x1B}, @@ -460,6 +460,9 @@ /*** $Log$ + Revision 1.4 2004/06/04 10:19:42 reddawg + notes: we compile again, thank g-d anyways i was about to cry + Revision 1.3 2004/05/19 04:07:42 reddawg kmalloc(size,pid) no more it is no kmalloc(size); the way it should of been