]> Git Repo - binutils.git/blobdiff - gprof/printgprof.c
discard empty rs6000 files
[binutils.git] / gprof / printgprof.c
index 868d647c3ad9ff3af6bbf33432b8284b12ea6053..a71767389e15a723b2e5eb31e71413a84af05136 100644 (file)
@@ -212,7 +212,7 @@ printgprof(timesortnlp)
         *      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 ++ ) {
@@ -246,7 +246,7 @@ printgprof(timesortnlp)
     }
     cfree( timesortnlp );
     if ( bflag && !bsd_style_output) {
-       callg_blurb(stdout);
+       fsf_callg_blurb(stdout);
     }
 }
 
@@ -766,7 +766,7 @@ PTR
 xmalloc (size)
      long size;
 {
-    PTR val = malloc (size);
+    PTR val = (PTR) malloc (size);
     if (val == NULL) {
        fprintf (stderr, "virtual memory exhaused\n");
        exit (1);
@@ -779,7 +779,7 @@ xrealloc (oldval, size)
      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);
This page took 0.022903 seconds and 4 git commands to generate.