diff options
author | Sean Eric Fagan <sef@cygnus> | 1991-07-22 19:33:46 +0000 |
---|---|---|
committer | Sean Eric Fagan <sef@cygnus> | 1991-07-22 19:33:46 +0000 |
commit | 811e3c6a86b2cf067b6ed07dfae8559c6d1aaabf (patch) | |
tree | 6d3bc015cf179495ffc2906fb3919f6452e07b78 /gprof/gprof.h | |
parent | 39ada6fced8ae3ebaf327a433d37ba2fcae2df57 (diff) | |
download | gdb-811e3c6a86b2cf067b6ed07dfae8559c6d1aaabf.zip gdb-811e3c6a86b2cf067b6ed07dfae8559c6d1aaabf.tar.gz gdb-811e3c6a86b2cf067b6ed07dfae8559c6d1aaabf.tar.bz2 |
Made gprof use bfd instead. This is the first step in allowing cross-hosted
gprof use.
Diffstat (limited to 'gprof/gprof.h')
-rw-r--r-- | gprof/gprof.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gprof/gprof.h b/gprof/gprof.h index 6edec28..35ad5af 100644 --- a/gprof/gprof.h +++ b/gprof/gprof.h @@ -19,10 +19,11 @@ * @(#)gprof.h 5.9 (Berkeley) 6/1/90 */ +#include <stdio.h> +#include <stdlib.h> #include <sys/types.h> #include <sys/stat.h> -#include <a.out.h> -#include <stdio.h> +#include "bfd.h" #include "gmon.h" #ifdef MACHINE_H @@ -164,7 +165,6 @@ double scale; /* scale factor converting samples to pc values: each sample covers scale bytes */ char *strtab; /* string table in core */ off_t ssiz; /* size of the string table */ -struct exec xbuf; /* exec header of a.out */ unsigned char *textspace; /* text space of a.out in core */ /* |