/* of the forest in order of DECREASING */
/* indices. */
-void CORD_init_min_len()
+void CORD_init_min_len(void)
{
register int i;
register size_t last, previous, current;
/* Reduce the number of map entries to save space for huge files. */
/* This also affects maps in histories. */
-void prune_map()
+void prune_map(void)
{
line_map map = current_map;
int start_line = map -> line;
/* Update dis_line, dis_col, and dis_pos to make cursor visible. */
/* Assumes line, col, dis_line, dis_pos are in bounds. */
-void normalize_display()
+void normalize_display(void)
{
int old_line = dis_line;
int old_col = dis_col;
/* Make sure line, col, and dis_pos are somewhere inside file. */
/* Recompute file_pos. Assumes dis_pos is accurate or past eof */
-void fix_pos()
+void fix_pos(void)
{
int my_col = col;