source:
trunk/minix/lib/curses/beep.c@
10
Last change on this file since 10 was 9, checked in by , 14 years ago | |
---|---|
File size: 209 bytes |
Line | |
---|---|
1 | #include <curses.h> |
2 | #include "curspriv.h" |
3 | #include <termcap.h> |
4 | |
5 | extern char *bl, *vb; |
6 | |
7 | /* Beep() sounds the terminal bell. */ |
8 | void beep() |
9 | { |
10 | if (bl) |
11 | tputs(bl, 1, outc); |
12 | else if (vb) |
13 | tputs(vb, 1, outc); |
14 | } |
Note:
See TracBrowser
for help on using the repository browser.