qulogic/libgnt

Fix call to Py_SetProgramName in Python3.
release-2.x.y
2014-02-13, Elliott Sales de Andrade
c37afb64c6ad
Fix call to Py_SetProgramName in Python3.

Refs #15969.
#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;
}