comparison Histogram.c @ 24:a9e071e01e07

added include of malloc.h
author Sean Halle <seanhalle@yahoo.com>
date Mon, 10 Sep 2012 01:08:06 -0700
parents 6cee2e00eacb
children 7664da1180fd
comparison
equal deleted inserted replaced
15:b122b7590653 16:35c788787202
5 * Author: seanhalle@yahoo.com 5 * Author: seanhalle@yahoo.com
6 * 6 *
7 */ 7 */
8 #include <stdio.h> 8 #include <stdio.h>
9 #include <string.h> 9 #include <string.h>
10 #include <malloc.h>
11
10 #include "Histogram.h" 12 #include "Histogram.h"
11 13
12 14
13 /*This Histogram Abstract Data Type has a number of bins plus a range of 15 /*This Histogram Abstract Data Type has a number of bins plus a range of
14 * values that the bins span, both chosen at creation. 16 * values that the bins span, both chosen at creation.