comparison FloatHist.c @ 4:83a412f2ef98

Added stdio.h and copy-paste error on FreeDblHist to FreeFloatHist
author Me
date Tue, 02 Nov 2010 16:47:21 -0700
parents 3d35477a5121
children 060d63cb5d34
comparison
equal deleted inserted replaced
1:d3b2e6ead5a1 2:e16570d908ad
3 * Licensed under GNU General Public License version 2 3 * Licensed under GNU General Public License version 2
4 * 4 *
5 * Author: seanhalle@yahoo.com 5 * Author: seanhalle@yahoo.com
6 * 6 *
7 */ 7 */
8 8 #include <stdio.h>
9 #include "Histogram.h" 9 #include "Histogram.h"
10 10
11 /*This Histogram Abstract Data Type has a number of bins, the starting 11 /*This Histogram Abstract Data Type has a number of bins, the starting
12 * value, and the width of each bin, as a float, all chosen at creation. 12 * value, and the width of each bin, as a float, all chosen at creation.
13 * 13 *
96 } 96 }
97 } 97 }
98 98
99 99
100 void 100 void
101 freeDblHist( FloatHist *hist ) 101 freeFloatHist( FloatHist *hist )
102 { 102 {
103 VMS__free( hist->bins ); 103 VMS__free( hist->bins );
104 VMS__free( hist ); 104 VMS__free( hist );
105 } 105 }