X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flanguage%2Fstats%2Ft-test.q;h=7c2352c4cf26dbf88c20b317da38a113f8b4884a;hb=a4ae68f966bc574326d429119878e733069ced14;hp=6d3f4ba263fe2314baca3999c2ee1678bf4dd105;hpb=de881ed979f2a6c382589b9d54d485ad88323821;p=pspp-builds.git diff --git a/src/language/stats/t-test.q b/src/language/stats/t-test.q index 6d3f4ba2..7c2352c4 100644 --- a/src/language/stats/t-test.q +++ b/src/language/stats/t-test.q @@ -33,6 +33,7 @@ #include #include #include +#include #include #include #include @@ -233,7 +234,8 @@ static int group_calc (const struct ccase *, struct cmd_t_test *); static void group_postcalc (struct cmd_t_test *); -static bool calculate(const struct casefile *cf, void *_mode); +static bool calculate(const struct ccase *first, + const struct casefile *cf, void *_mode); static int mode; @@ -1835,7 +1837,7 @@ group_postcalc ( struct cmd_t_test *cmd ) static bool -calculate(const struct casefile *cf, void *cmd_) +calculate(const struct ccase *first, const struct casefile *cf, void *cmd_) { struct ssbox stat_summary_box; struct trbox test_results_box; @@ -1845,6 +1847,7 @@ calculate(const struct casefile *cf, void *cmd_) struct cmd_t_test *cmd = (struct cmd_t_test *) cmd_; + output_split_file_values (first); common_precalc(cmd); for(r = casefile_get_reader (cf); casereader_read (r, &c) ;