Commit bfd38496 by Jeffrey A Law Committed by Jeff Law

bitmap.c (debug_bitmap_file): Renmaed from bitmap_debug_file.

        * bitmap.c (debug_bitmap_file): Renmaed from bitmap_debug_file.
        Callers and prototype changed.
        * bitmap.h: Fix debug_bitmap and debug_bitmap_file prototypes.

From-SVN: r29518
parent c97c62ef
Mon Sep 20 05:41:36 1999 Jeffrey A Law (law@cygnus.com)
* bitmap.c (debug_bitmap_file): Renmaed from bitmap_debug_file.
Callers and prototype changed.
* bitmap.h: Fix debug_bitmap and debug_bitmap_file prototypes.
Mon Sep 20 06:56:32 1999 Alexandre Oliva <oliva@lsd.ic.unicamp.br> Mon Sep 20 06:56:32 1999 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
* config/sparc/sol2.h (LINK_SPEC): Avoid the duplication of * config/sparc/sol2.h (LINK_SPEC): Avoid the duplication of
......
...@@ -552,7 +552,7 @@ bitmap_initialize (head) ...@@ -552,7 +552,7 @@ bitmap_initialize (head)
/* Debugging function to print out the contents of a bitmap. */ /* Debugging function to print out the contents of a bitmap. */
void void
bitmap_debug_file (file, head) debug_bitmap_file (file, head)
FILE *file; FILE *file;
bitmap head; bitmap head;
{ {
...@@ -602,10 +602,10 @@ void ...@@ -602,10 +602,10 @@ void
debug_bitmap (head) debug_bitmap (head)
bitmap head; bitmap head;
{ {
bitmap_debug_file (stdout, head); debug_bitmap_file (stdout, head);
} }
/* Function to print out the contents of a bitmap. Unlike bitmap_debug_file, /* Function to print out the contents of a bitmap. Unlike debug_bitmap_file,
it does not print anything but the bits. */ it does not print anything but the bits. */
void void
......
...@@ -85,8 +85,8 @@ extern void bitmap_set_bit PROTO((bitmap, int)); ...@@ -85,8 +85,8 @@ extern void bitmap_set_bit PROTO((bitmap, int));
extern int bitmap_bit_p PROTO((bitmap, int)); extern int bitmap_bit_p PROTO((bitmap, int));
/* Debug functions to print a bitmap linked list. */ /* Debug functions to print a bitmap linked list. */
extern void bitmap_debug PROTO((bitmap)); extern void debug_bitmap PROTO((bitmap));
extern void bitmap_debug_file PROTO((FILE *, bitmap)); extern void debug_bitmap_file PROTO((FILE *, bitmap));
/* Print a bitmap */ /* Print a bitmap */
extern void bitmap_print PROTO((FILE *, bitmap, const char *, const char *)); extern void bitmap_print PROTO((FILE *, bitmap, const char *, const char *));
......
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