X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fmann-whitney.c;h=4db82f8e904be5d7bf2a18460b319bc1b37717a1;hb=81579d9e9f994fb2908f50af41c3eb033d216e58;hp=18be7c148761dbbba3b5d51c913985f4fdfe4b93;hpb=b691ba0cb82d5c3be249f3ecab667d9cf011c5d6;p=pspp-builds.git diff --git a/src/language/stats/mann-whitney.c b/src/language/stats/mann-whitney.c index 18be7c14..4db82f8e 100644 --- a/src/language/stats/mann-whitney.c +++ b/src/language/stats/mann-whitney.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2010 Free Software Foundation, Inc. + Copyright (C) 2010, 2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -16,20 +16,20 @@ #include -#include "mann-whitney.h" +#include "language/stats/mann-whitney.h" #include -#include -#include - -#include -#include -#include -#include -#include -#include -#include +#include "data/case.h" +#include "data/casereader.h" +#include "data/dictionary.h" +#include "data/format.h" +#include "data/procedure.h" +#include "data/variable.h" +#include "libpspp/cast.h" +#include "libpspp/misc.h" +#include "math/sort.h" +#include "output/tab.h" /* Calculates the adjustment necessary for tie compensation */ static void @@ -60,7 +60,7 @@ mann_whitney_execute (const struct dataset *ds, enum mv_class exclude, const struct npar_test *test, bool exact, - double timer) + double timer UNUSED) { int i; const struct dictionary *dict = dataset_dict (ds); @@ -147,7 +147,6 @@ mann_whitney_execute (const struct dataset *ds, -#include #include "gettext.h" #define _(msgid) gettext (msgid)