gcc 3.0 related fixes

This commit is contained in:
Bill Currie 2001-08-16 23:24:39 +00:00
parent 4ca1499c51
commit f840a44981

View file

@ -35,6 +35,12 @@
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef HAVE_STRING_H
# include <string.h>
#endif
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#include <stdio.h>
#include <stdlib.h>
@ -106,6 +112,7 @@ keyhandler (int scancode, int state)
shifts |= ROTL(press, 3);
break;
default:
break;
}
Key_Event (key, ascii, press);
}