qulogic/libgnt

Rename finch/libgnt/genmarshal to gntmarshal for consistency.
meson
2016-08-22, Elliott Sales de Andrade
12cec571fe2c
Rename finch/libgnt/genmarshal to gntmarshal for consistency.

This makes for a simpler generator rule.
#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;
}