Need to stub frontend_keypress() in console.c as well as window.c.
[u/mdw/putty] / console.c
index e49eaa0..80bca3c 100644 (file)
--- a/console.c
+++ b/console.c
@@ -303,3 +303,11 @@ int console_get_line(const char *prompt, char *str,
     }
     return 1;
 }
+
+void frontend_keypress(void)
+{
+    /*
+     * This is nothing but a stub, in console code.
+     */
+    return;
+}