summaryrefslogtreecommitdiff
path: root/lib/libncurses/lib_beep.c
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1999-08-30 07:58:08 +0000
committerPeter Wemm <peter@FreeBSD.org>1999-08-30 07:58:08 +0000
commit99af2e21c73f07587da16d34eb6795f4a46cc5be (patch)
tree5df591f7e443330146099aa76e2f474a81669ebf /lib/libncurses/lib_beep.c
parent02e1576966f0a3b9300a7269c3e6894e62b1f3ba (diff)
Notes
Diffstat (limited to 'lib/libncurses/lib_beep.c')
-rw-r--r--lib/libncurses/lib_beep.c56
1 files changed, 0 insertions, 56 deletions
diff --git a/lib/libncurses/lib_beep.c b/lib/libncurses/lib_beep.c
deleted file mode 100644
index 60ce5920b20e..000000000000
--- a/lib/libncurses/lib_beep.c
+++ /dev/null
@@ -1,56 +0,0 @@
-
-/* This work is copyrighted. See COPYRIGHT.OLD & COPYRIGHT.NEW for *
-* details. If they are missing then this copy is in violation of *
-* the copyright conditions. */
-
-/*
- * beep.c
- *
- * Routines beep() and flash()
- *
- */
-
-#include "curses.priv.h"
-#include "terminfo.h"
-
-/*
- * beep()
- *
- * Sound the current terminal's audible bell if it has one. If not,
- * flash the screen if possible.
- *
- */
-
-int beep()
-{
- T(("beep() called"));
-
- /* should make sure that we are not in altchar mode */
- if (bell)
- return(putp(bell));
- else if (flash_screen)
- return(putp(flash_screen));
- else
- return(ERR);
-}
-
-/*
- * flash()
- *
- * Flash the current terminal's screen if possible. If not,
- * sound the audible bell if one exists.
- *
- */
-
-int flash()
-{
- T(("flash() called"));
-
- /* should make sure that we are not in altchar mode */
- if (flash_screen)
- return(putp(flash_screen));
- else if (bell)
- return(putp(bell));
- else
- return(ERR);
-}