+2006-04-17 Jason Stover <jason@wonko.gcsu.edu>
+
+ * linreg.c (pspp_linreg_cache_free): Accept a pointer of type
+ void to match definition of trns_proc_func.
+
2006-04-17 Jason Stover <jhs@math.gcsu.edu>
* linreg.c (pspp_linreg_cache_free): Return a bool.
}
bool
-pspp_linreg_cache_free (pspp_linreg_cache * c)
+pspp_linreg_cache_free (void * m)
{
+ pspp_linreg_cache *c = m;
gsl_vector_free (c->indep_means);
gsl_vector_free (c->indep_std);
gsl_vector_free (c->ss_indeps);
*/
pspp_linreg_cache *pspp_linreg_cache_alloc (size_t n, size_t p);
-bool pspp_linreg_cache_free (pspp_linreg_cache * c);
+bool pspp_linreg_cache_free (void *);
/*
Fit the linear model via least squares. All pointers passed to pspp_linreg