xref: /openbsd-src/gnu/usr.bin/binutils/gprof/call_graph.h (revision c074d1c999f3e07019cd5e9a2f190b057ef3b935)
1*b55d4692Sfgsch /* call_graph.h
2*b55d4692Sfgsch 
3*b55d4692Sfgsch    Copyright 2000, 2001 Free Software Foundation, Inc.
4*b55d4692Sfgsch 
5*b55d4692Sfgsch This file is part of GNU Binutils.
6*b55d4692Sfgsch 
7*b55d4692Sfgsch This program is free software; you can redistribute it and/or modify
8*b55d4692Sfgsch it under the terms of the GNU General Public License as published by
9*b55d4692Sfgsch the Free Software Foundation; either version 2 of the License, or
10*b55d4692Sfgsch (at your option) any later version.
11*b55d4692Sfgsch 
12*b55d4692Sfgsch This program is distributed in the hope that it will be useful,
13*b55d4692Sfgsch but WITHOUT ANY WARRANTY; without even the implied warranty of
14*b55d4692Sfgsch MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15*b55d4692Sfgsch GNU General Public License for more details.
16*b55d4692Sfgsch 
17*b55d4692Sfgsch You should have received a copy of the GNU General Public License
18*b55d4692Sfgsch along with this program; if not, write to the Free Software
19*b55d4692Sfgsch Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
20*b55d4692Sfgsch 
212159047fSniklas #ifndef call_graph_h
222159047fSniklas #define call_graph_h
232159047fSniklas 
24*b55d4692Sfgsch extern void cg_tally      PARAMS ((bfd_vma, bfd_vma, unsigned long));
25*b55d4692Sfgsch extern void cg_read_rec   PARAMS ((FILE *, const char *));
26*b55d4692Sfgsch extern void cg_write_arcs PARAMS ((FILE *, const char *));
272159047fSniklas 
282159047fSniklas #endif /* call_graph_h */
29