X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fsign.c;h=a5a272126007c557a2c006b652d73cf7e9fe4436;hb=5c3291dc396b795696e94f47780308fd7ace6fc4;hp=b76d9e33ebc59ae43db95f04339b344469c34434;hpb=9e0e4996fad6563f0a1ce628b80db5c23ef8279e;p=pspp-builds.git diff --git a/src/language/stats/sign.c b/src/language/stats/sign.c index b76d9e33..a5a27212 100644 --- a/src/language/stats/sign.c +++ b/src/language/stats/sign.c @@ -17,8 +17,6 @@ #include #include "sign.h" -#include - #include #include #include @@ -31,6 +29,9 @@ #include #include +#include "minmax.h" +#include "xalloc.h" + #include "gettext.h" #define _(msgid) gettext (msgid) @@ -56,7 +57,7 @@ output_frequency_table (const struct two_sample_test *t2s, const struct variable *wv = dict_get_weight (dict); const struct fmt_spec *wfmt = wv ? var_get_print_format (wv) : & F_8_0; - tab_dim (table, tab_natural_dimensions); + tab_dim (table, tab_natural_dimensions, NULL); tab_title (table, _("Frequencies")); @@ -109,7 +110,7 @@ output_statistics_table (const struct two_sample_test *t2s, int i; struct tab_table *table = tab_create (1 + t2s->n_pairs, 4, 0); - tab_dim (table, tab_natural_dimensions); + tab_dim (table, tab_natural_dimensions, NULL); tab_title (table, _("Test Statistics"));