libgnt/libgnt

Export our builds so we can save the logs
release-2.x.y
2021-09-28, Gary Kramlich
3fadbfa21320
Export our builds so we can save the logs

Testing Done:
Ran locally

Reviewed at https://reviews.imfreedom.org/r/956/
#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;
}