diff options
Diffstat (limited to 'gprof/call_graph.c')
-rw-r--r-- | gprof/call_graph.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/gprof/call_graph.c b/gprof/call_graph.c index e798a0e..461b2db 100644 --- a/gprof/call_graph.c +++ b/gprof/call_graph.c @@ -31,10 +31,7 @@ #include "sym_ids.h" void -cg_tally (from_pc, self_pc, count) - bfd_vma from_pc; - bfd_vma self_pc; - unsigned long count; +cg_tally (bfd_vma from_pc, bfd_vma self_pc, unsigned long count) { Sym *parent; Sym *child; @@ -80,9 +77,7 @@ cg_tally (from_pc, self_pc, count) for formatting error-messages only. */ void -cg_read_rec (ifp, filename) - FILE *ifp; - const char *filename; +cg_read_rec (FILE *ifp, const char *filename) { bfd_vma from_pc, self_pc; unsigned int count; @@ -109,9 +104,7 @@ cg_read_rec (ifp, filename) only. */ void -cg_write_arcs (ofp, filename) - FILE *ofp; - const char *filename; +cg_write_arcs (FILE *ofp, const char *filename) { Arc *arc; Sym *sym; |