libgnt/libgnt

Set the default branch in our reviewboardrc file
release-2.x.y
2020-12-19, Gary Kramlich
4315c5a6d1d4
Set the default branch in our reviewboardrc file

Testing Done:
Verified that the branch was set properly when I created this review request.

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