# HG changeset patch # User Merten Sach # Date 1308754054 -7200 # Node ID 060d63cb5d3497a8c8d006ee367f09378b28e0c3 # Parent c83c27796fad1ff6bae9afdb3ca8eb1f18ab91cb Build process fixes diff -r c83c27796fad -r 060d63cb5d34 DblHist.c --- a/DblHist.c Sat Nov 20 08:41:39 2010 +0100 +++ b/DblHist.c Wed Jun 22 16:47:34 2011 +0200 @@ -8,6 +8,7 @@ #include #include "Histogram.h" +#include "../vmalloc.h" /*This Histogram Abstract Data Type has a number of bins, the starting diff -r c83c27796fad -r 060d63cb5d34 FloatHist.c --- a/FloatHist.c Sat Nov 20 08:41:39 2010 +0100 +++ b/FloatHist.c Wed Jun 22 16:47:34 2011 +0200 @@ -7,6 +7,7 @@ */ #include #include "Histogram.h" +#include "../vmalloc.h" /*This Histogram Abstract Data Type has a number of bins, the starting * value, and the width of each bin, as a float, all chosen at creation. diff -r c83c27796fad -r 060d63cb5d34 Histogram.c --- a/Histogram.c Sat Nov 20 08:41:39 2010 +0100 +++ b/Histogram.c Wed Jun 22 16:47:34 2011 +0200 @@ -8,6 +8,7 @@ #include #include "Histogram.h" #include "../vutilities.h" +#include "../vmalloc.h" /*This Histogram Abstract Data Type has a number of bins plus a range of diff -r c83c27796fad -r 060d63cb5d34 Histogram.h --- a/Histogram.h Sat Nov 20 08:41:39 2010 +0100 +++ b/Histogram.h Wed Jun 22 16:47:34 2011 +0200 @@ -84,5 +84,8 @@ void printDblHist( DblHist *hist ); +void +freeDblHist( DblHist *hist ); + #endif /* _HISTOGRAM_H */