Mercurial > cgi-bin > hgwebdir.cgi > VMS > C_Libraries > Histogram
diff FloatHist.c @ 29:5d1597d9b24a
Renamed VMS to PR, in new branch
| author | Sean Halle <seanhalle@yahoo.com> |
|---|---|
| date | Mon, 03 Sep 2012 15:04:33 -0700 |
| parents | f4d96eaf374a |
| children | 84601ecae690 |
line diff
1.1 --- a/FloatHist.c Tue Mar 13 18:31:05 2012 -0700 1.2 +++ b/FloatHist.c Mon Sep 03 15:04:33 2012 -0700 1.3 @@ -26,8 +26,8 @@ 1.4 FloatHist *hist; 1.5 int i; 1.6 1.7 - hist = VMS_int__malloc( sizeof(FloatHist) ); 1.8 - hist->bins = VMS_int__malloc( numBins * sizeof(int) ); 1.9 + hist = PR_int__malloc( sizeof(FloatHist) ); 1.10 + hist->bins = PR_int__malloc( numBins * sizeof(int) ); 1.11 1.12 hist->numBins = numBins; 1.13 hist->binWidth = binWidth; 1.14 @@ -100,6 +100,6 @@ 1.15 void 1.16 freeFloatHist( FloatHist *hist ) 1.17 { 1.18 - VMS_int__free( hist->bins ); 1.19 - VMS_int__free( hist ); 1.20 + PR_int__free( hist->bins ); 1.21 + PR_int__free( hist ); 1.22 }
