]> granicus.if.org Git - gc/commitdiff
cord: Change no-argument functions declaration style to ANSI C
authorIvan Maidanski <ivmai@mail.ru>
Sun, 16 Feb 2014 16:46:58 +0000 (20:46 +0400)
committerIvan Maidanski <ivmai@mail.ru>
Fri, 11 Mar 2016 21:07:55 +0000 (00:07 +0300)
* cord/cordbscs.c (CORD_init_min_len): Use ANSI C style of no-argument
function prototype.
* cord/tests/de.c (prune_map, normalize_display, fix_pos): Likewise.

cord/cordbscs.c
cord/tests/de.c

index 889129d13d9026035e425d553564ed461b65f3ad..5aeb3f8af335e7a571ed66709c94856297da9933 100644 (file)
@@ -600,7 +600,7 @@ typedef ForestElement Forest [ MAX_DEPTH ];
                         /* 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;
index 9ce2388cdba7ddbae07a1b2fc97d03e66f0c639a..84aa4de8a148980e003497395af1c45a9c01fad2 100644 (file)
@@ -124,7 +124,7 @@ void invalidate_map(int i)
 
 /* 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;
@@ -305,7 +305,7 @@ int dis_granularity;
 
 /* 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;
@@ -343,7 +343,7 @@ void fix_cursor(void)
 
 /* 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;