secondary cache feature in vm.
[minix.git] / lib / libcurses / beep.c
blobaa6fced2e1e849963f7c340c013c11f21d5ca764
1 #include <curses.h>
2 #include <termcap.h>
4 extern char *bl, *vb;
6 /* Beep() sounds the terminal bell. */
7 void beep()
9 if (bl)
10 tputs(bl, 1, outc);
11 else if (vb)
12 tputs(vb, 1, outc);