Add a tty_bell wrapper function, from Dylan Alex Simon.

This commit is contained in:
Nicholas Marriott
2011-08-24 09:58:44 +00:00
parent 47d41d0203
commit 029c34ce6b
3 changed files with 10 additions and 3 deletions

6
tty.c
View File

@ -1546,3 +1546,9 @@ tty_try_88(struct tty *tty, u_char colour, const char *type)
tty_puts(tty, s);
return (0);
}
void
tty_bell(struct tty *tty)
{
tty_putcode(tty, TTYC_BEL);
}