summaryrefslogtreecommitdiffstats
path: root/pbl
diff options
context:
space:
mode:
Diffstat (limited to 'pbl')
-rw-r--r--pbl/console.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/pbl/console.c b/pbl/console.c
index 3875e2aafd..a9859ad162 100644
--- a/pbl/console.c
+++ b/pbl/console.c
@@ -30,3 +30,13 @@ int pr_print(int level, const char *fmt, ...)
return i;
}
+
+int ctrlc(void)
+{
+ return 0;
+}
+
+void console_putc(unsigned int ch, char c)
+{
+ putc_ll(c);
+}