qulogic/libgnt

Fix incorrect Since tags.

2019-05-19, Elliott Sales de Andrade
93fc8c41ded2
Fix incorrect Since tags.

Anything on default-only would never have gone out in 2.8.0; update them to
3.0.0.
#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;
}