Commit c3709629 by Jeffrey A Law Committed by Jeff Law

bitmap.c (bitmap_element_allocate): Use "void" for arglist instead of an empty…

bitmap.c (bitmap_element_allocate): Use "void" for arglist instead of an empty arglist in prototype.

        * bitmap.c (bitmap_element_allocate): Use "void" for arglist instead
        of an empty arglist in prototype.

From-SVN: r19044
parent ee5254ff
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.
......
......@@ -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));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment