Some of this is rather silly.
}
+#if 0
/*
* Time left until input timeout. Return the number of milliseconds left
* until the input timeout elapses, zero if it has already elapsed, -1 if
return INT_MAX - 1000;
return diff.tv_sec * 1000 + diff.tv_usec / 1000;
}
+#endif
/*
refresh();
ch = unix_read_char(1);
getyx(stdscr, y, x2);
+ x2++; /*XXX Eliminate compiler warning. */
width = h_screen_width - margin;
max = MIN(width, bufmax);
/* The screen has shrunk and input no longer fits. Chop. */
cursor_row = h_screen_rows - 1;
}
-bool os_repaint_window(int win, int ypos_old, int ypos_new, int xpos,
- int ysize, int xsize)
+bool os_repaint_window(int UNUSED(win), int UNUSED(ypos_old),
+ int UNUSED(ypos_new), int UNUSED(xpos),
+ int UNUSED(ysize), int UNUSED(xsize))
{
return FALSE;
}