diff options
Diffstat (limited to 'gprof/cg_print.c')
-rw-r--r-- | gprof/cg_print.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/gprof/cg_print.c b/gprof/cg_print.c index 30f445f..77a0c4c 100644 --- a/gprof/cg_print.c +++ b/gprof/cg_print.c @@ -61,7 +61,7 @@ double print_time = 0.0; static void -print_header () +print_header (void) { if (first_output) first_output = FALSE; @@ -561,7 +561,7 @@ cmp_name (const PTR left, const PTR right) void -cg_print_index () +cg_print_index (void) { unsigned int sym_index; unsigned int nnames, todo, i, j; @@ -984,13 +984,9 @@ cg_print_function_ordering (void) #define MOST 0.99 static void -order_and_dump_functions_by_arcs (the_arcs, arc_count, all, - unplaced_arcs, unplaced_arc_count) - Arc **the_arcs; - unsigned long arc_count; - int all; - Arc **unplaced_arcs; - unsigned long *unplaced_arc_count; +order_and_dump_functions_by_arcs (Arc **the_arcs, unsigned long arc_count, + int all, Arc **unplaced_arcs, + unsigned long *unplaced_arc_count) { #ifdef __GNUC__ unsigned long long tmp_arcs, total_arcs; |