- Replace the halfdelay() using function by the simulated frame one.
- Build and test against curses vs ncurses, better performance was
achieved for me using it, versus using the ncurses port that
poll(2)ed excessively long even with timeout(0). This seems to
be fine on ncurses that is native on Linux systems. Thus, use
X/Open standard curses.h instead of ncurses.h that works on both.
- Remove explicit cursor displacement code now that its visibility
is hidden with curs_set(). Theoretically curses should also do
this transparently with leaveok().