summaryrefslogtreecommitdiffstats
path: root/lib/libncurses/TESTS/test.c
diff options
context:
space:
mode:
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 f77f3a1..0000000
--- 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();
-}
-
-
OpenPOWER on IntegriCloud