repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
secondary cache feature in vm.
[minix.git]
/
lib
/
libcurses
/
beep.c
blob
aa6fced2e1e849963f7c340c013c11f21d5ca764
1
#include <curses.h>
2
#include <termcap.h>
3
4
extern
char
*
bl
, *
vb
;
5
6
/* Beep() sounds the terminal bell. */
7
void
beep
()
8
{
9
if
(
bl
)
10
tputs
(
bl
,
1
,
outc
);
11
else if
(
vb
)
12
tputs
(
vb
,
1
,
outc
);
13
}