summaryrefslogtreecommitdiff
path: root/lib/libncurses/TESTS/test.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/TESTS/test.c
parent02e1576966f0a3b9300a7269c3e6894e62b1f3ba (diff)
Notes
Diffstat (limited to 'lib/libncurses/TESTS/test.c')
-rw-r--r--lib/libncurses/TESTS/test.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/libncurses/TESTS/test.c b/lib/libncurses/TESTS/test.c
deleted file mode 100644
index f77f3a1e751e..000000000000
--- a/lib/libncurses/TESTS/test.c
+++ /dev/null
@@ -1,27 +0,0 @@
-
-#include <ncurses.h>
-
-main()
-{
-int x, y;
-
- initscr();
- cbreak();
- nodelay(stdscr, TRUE);
-
- for (y = 0; y < 43; y++)
- for (x =0; x < 132; x++) {
- move(y,x);
- printw("X");
- refresh();
- if (!getch()) {
- beep();
- sleep(1);
- }
- }
-
- nocbreak();
- endwin();
-}
-
-