source: trunk/minix/lib/curses/beep.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 209 bytes
RevLine 
[9]1#include <curses.h>
2#include "curspriv.h"
3#include <termcap.h>
4
5extern char *bl, *vb;
6
7/* Beep() sounds the terminal bell. */
8void 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.