X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flevene.h;h=a23d9a26df1664caa4dbfb515d950fe5cdf2cff5;hb=f9ce8d75ae81553d9aec05351cb2d12d0df33e5e;hp=37019524408d27e206c81bb54fa655818ebe96cd;hpb=48cf1d7de82d12cdf3c0433d49d3c66f820f1609;p=pspp diff --git a/src/levene.h b/src/levene.h index 3701952440..a23d9a26df 100644 --- a/src/levene.h +++ b/src/levene.h @@ -24,6 +24,7 @@ #include "var.h" +#include "casefile.h" /* What to do with missing values */ enum lev_missing { LEV_ANALYSIS, LEV_LISTWISE }; @@ -39,7 +40,8 @@ The dependent variables : v_dep; */ -void levene(struct variable *v_indep, int n_dep, struct variable **v_dep, +void levene(const struct casefile *cf, + struct variable *v_indep, int n_dep, struct variable **v_dep, enum lev_missing, is_missing_func);