Ignore:
Timestamp:
Aug 16, 2003, 6:59:22 PM (22 years ago)
Author:
bird
Message:

binutils v2.14 - offical sources.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/binutils/gprof/call_graph.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r608 r609  
    11/* call_graph.c  -  Create call graphs.
    22
    3    Copyright 2000, 2001 Free Software Foundation, Inc.
     3   Copyright 2000, 2001 Free Software Foundation, Inc.
    44
    55   This file is part of GNU Binutils.
     
    2121
    2222
     23
     24
     25
     26
    2327#include "cg_arcs.h"
    2428#include "call_graph.h"
     
    2630#include "gmon_io.h"
    2731#include "gmon_out.h"
    28 #include "symtab.h"
    2932#include "sym_ids.h"
    3033
    31 extern void
    32 DEFUN (cg_tally, (from_pc, self_pc, count),
    33        bfd_vma from_pc AND bfd_vma self_pc AND unsigned long count)
     34void
     35cg_tally (from_pc, self_pc, count)
     36     bfd_vma from_pc;
     37     bfd_vma self_pc;
     38     unsigned long count;
    3439{
    3540  Sym *parent;
     
    7782
    7883void
    79 DEFUN (cg_read_rec, (ifp, filename), FILE * ifp AND CONST char *filename)
     84cg_read_rec (ifp, filename)
     85     FILE *ifp;
     86     const char *filename;
    8087{
    8188  bfd_vma from_pc, self_pc;
     
    104111
    105112void
    106 DEFUN (cg_write_arcs, (ofp, filename), FILE * ofp AND const char *filename)
     113cg_write_arcs (ofp, filename)
     114     FILE *ofp;
     115     const char *filename;
    107116{
    108117  Arc *arc;
Note: See TracChangeset for help on using the changeset viewer.