summaryrefslogtreecommitdiffstats
path: root/mbbsd/term.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/term.c')
-rw-r--r--mbbsd/term.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/mbbsd/term.c b/mbbsd/term.c
index dffe7d79..8cac2583 100644
--- a/mbbsd/term.c
+++ b/mbbsd/term.c
@@ -76,3 +76,10 @@ term_init(void)
return YEA;
}
+void
+bell(void)
+{
+ const char c = Ctrl('G');
+ write(1, &c, 1);
+}
+