qulogic/libgnt

Revert changes to libgnt/*.h from the prev commit
soc.2013.gobjectification.plugins
2014-02-07, Ankit Vani
1a745e722aba
Revert changes to libgnt/*.h from the prev commit
#include <ncurses.h>
int main()
{
int ch;
initscr();
noecho();
cbreak();
refresh();
WINDOW *win = newpad(20, 30);
box(win, 0, 0);
prefresh(win, 0, 0, 0, 0, 19, 29);
doupdate();
while ((ch = getch())) {
printw("%d ", ch);
refresh();
}
endwin();
return 0;
}