diff options
Diffstat (limited to 'lib/libncurses/TESTS/test.c')
-rw-r--r-- | lib/libncurses/TESTS/test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libncurses/TESTS/test.c b/lib/libncurses/TESTS/test.c index 1fc3e6e9a037b..f77f3a1e751e2 100644 --- a/lib/libncurses/TESTS/test.c +++ b/lib/libncurses/TESTS/test.c @@ -1,14 +1,14 @@ #include <ncurses.h> - + main() { int x, y; initscr(); cbreak(); - nodelay(stdscr, TRUE); - + nodelay(stdscr, TRUE); + for (y = 0; y < 43; y++) for (x =0; x < 132; x++) { move(y,x); |