1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-22 02:15:28 +00:00

Missing return type for make_kbd_instance(). (#92)

We don't fill in other missing types here as the code relies
upon missing types for the arguments to the various callbacks.
This commit is contained in:
Bruce Mitchener 2020-12-17 23:35:28 +07:00 committed by GitHub
parent 26e67a513e
commit 9b9c7b0283
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ extern void ExitDosKbd();
extern unsigned long GenericReturnT();
#endif /* DOS */
make_kbd_instance(KbdInterface kbd) {
void make_kbd_instance(KbdInterface kbd) {
#ifdef DOS
kbd->device_event = &Kbd_event; /* */
kbd->device.enter = &EnterDosKbd;