bitmap.c (bitmap_element_allocate): Use "void" for arglist instead of an empty arglis...
authorJeffrey A Law <law@cygnus.com>
Wed, 8 Apr 1998 11:54:19 +0000 (11:54 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 8 Apr 1998 11:54:19 +0000 (05:54 -0600)
        * bitmap.c (bitmap_element_allocate): Use "void" for arglist instead
        of an empty arglist in prototype.

From-SVN: r19044

gcc/ChangeLog
gcc/bitmap.c

index 3bbcb1ccc0c82e68aa0b10cfacdf619b5f40cb86..ea7a56487276d3d18a56ec06eddb21cc0fbbe1bf 100644 (file)
@@ -1,5 +1,8 @@
 Wed Apr  8 12:51:19 1998  Jeffrey A Law  (law@cygnus.com)
 
+       * bitmap.c (bitmap_element_allocate): Use "void" for arglist instead
+       of an empty arglist in prototype.
+
        * Makefile.in: Remove bytecode crud that crept back in after the
        gcc2 merge.
 
index cefbf798283fcd7b95e70330a5151df8754a6a02..a5aa2e7c02f86a3d5015f2925b50f63c85096c5c 100644 (file)
@@ -44,7 +44,7 @@ bitmap_element bitmap_zero;           /* An element of all zero bits. */
 bitmap_element *bitmap_free;           /* Freelist of bitmap elements. */
 
 static void bitmap_element_free                PROTO((bitmap, bitmap_element *));
-static bitmap_element *bitmap_element_allocate PROTO(());
+static bitmap_element *bitmap_element_allocate PROTO((void));
 static int bitmap_element_zerop                PROTO((bitmap_element *));
 static void bitmap_element_link                PROTO((bitmap, bitmap_element *));
 static bitmap_element *bitmap_find_bit PROTO((bitmap, unsigned int));