* Print out the structured profiling list
*/
if ( bflag && bsd_style_output ) {
- callg_blurb(stdout);
+ bsd_callg_blurb(stdout);
}
gprofheader();
for ( index = 0 ; index < nname + ncycle ; index ++ ) {
}
cfree( timesortnlp );
if ( bflag && !bsd_style_output) {
- callg_blurb(stdout);
+ fsf_callg_blurb(stdout);
}
}
xmalloc (size)
long size;
{
- PTR val = malloc (size);
+ PTR val = (PTR) malloc (size);
if (val == NULL) {
fprintf (stderr, "virtual memory exhaused\n");
exit (1);
PTR oldval;
long size;
{
- PTR val = realloc (oldval, size);
+ PTR val = (PTR) realloc (oldval, size);
if (val == NULL) {
fprintf (stderr, "virtual memory exhaused\n");
exit (1);