diff options
author | Ken Raeburn <raeburn@cygnus> | 1994-09-23 19:12:14 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1994-09-23 19:12:14 +0000 |
commit | a67d9a42cc378bebc1ec1ebda4b1641907050f0e (patch) | |
tree | 41e01b9b35250e38ad9783b4e883e731e55a950b /gprof/printgprof.c | |
parent | 5fe67aa8fb255b5152b46599aa133fe551c8b3b1 (diff) | |
download | gdb-a67d9a42cc378bebc1ec1ebda4b1641907050f0e.zip gdb-a67d9a42cc378bebc1ec1ebda4b1641907050f0e.tar.gz gdb-a67d9a42cc378bebc1ec1ebda4b1641907050f0e.tar.bz2 |
cfree -> free
Diffstat (limited to 'gprof/printgprof.c')
-rw-r--r-- | gprof/printgprof.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gprof/printgprof.c b/gprof/printgprof.c index a717673..f4e5167 100644 --- a/gprof/printgprof.c +++ b/gprof/printgprof.c @@ -57,7 +57,7 @@ printprof() flatprofline( np ); } actime = 0.0; - cfree( sortednlp ); + free( sortednlp ); if ( bflag && !bsd_style_output ) { flat_blurb(stdout); } @@ -244,7 +244,7 @@ printgprof(timesortnlp) if (bsd_style_output) printf( "\n" ); } - cfree( timesortnlp ); + free( timesortnlp ); if ( bflag && !bsd_style_output) { fsf_callg_blurb(stdout); } @@ -759,7 +759,7 @@ printindex() } printf( "\n" ); } - cfree( namesortnlp ); + free( namesortnlp ); } PTR |