summaryrefslogtreecommitdiffhomepage
path: root/contrib/luacurses/test/getnstr.lua
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-03-07 13:07:56 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-03-07 13:07:56 +0000
commit65606ca09a7f69c30dc4d749a9699d6ae84806b5 (patch)
treedfed1aaaf6a92a1e3fa7c5e11558aa0f60e77c10 /contrib/luacurses/test/getnstr.lua
parentc3426d56b1551fd8233a5cd642db2009801b0ab5 (diff)
contrib: drop luacurses, it was never used and fails the build on modern distros
Diffstat (limited to 'contrib/luacurses/test/getnstr.lua')
-rw-r--r--contrib/luacurses/test/getnstr.lua12
1 files changed, 0 insertions, 12 deletions
diff --git a/contrib/luacurses/test/getnstr.lua b/contrib/luacurses/test/getnstr.lua
deleted file mode 100644
index 172365ea90..0000000000
--- a/contrib/luacurses/test/getnstr.lua
+++ /dev/null
@@ -1,12 +0,0 @@
-
-require("curses");
-
-curses.initscr();
-
-curses.keypad(curses.stdscr(), true);
-s = curses.mvgetnstr(10, 10, 10);
-curses.addstr(s);
-curses.getch();
-
-curses.endwin();
-