Fixes for /usr/xbin binaries bootstrap dir.
[minix3.git] / lib / curses / beep.c
blob1fa9a4fff007c159e39c719ac4b7ac815c38eb93
1 #include <curses.h>
2 #include "curspriv.h"
3 #include <termcap.h>
5 extern char *bl, *vb;
7 /* Beep() sounds the terminal bell. */
8 void beep()
10 if (bl)
11 tputs(bl, 1, outc);
12 else if (vb)
13 tputs(vb, 1, outc);