repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixes for /usr/xbin binaries bootstrap dir.
[minix3.git]
/
lib
/
curses
/
beep.c
blob
1fa9a4fff007c159e39c719ac4b7ac815c38eb93
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
}