* gmon.h, gprof.h: structs of chars used to hold external

representations.
	* gprof.c (getpfile, openpfile, readsamples): Swap data in using
	new structures.
This commit is contained in:
Steve Chamberlain
1993-06-16 19:58:37 +00:00
parent 3ef6f6045e
commit 73fbbeead4
4 changed files with 61 additions and 33 deletions

View File

@ -98,6 +98,12 @@ struct rawarc {
long raw_count;
};
struct veryrawarc {
char raw_frompc[4];
char raw_selfpc[4];
char raw_count[4];
};
/*
* general rounding functions.
*/