X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flevene.h;h=1889a18a203c8b206c8a6900e619e52629a2c852;hb=9f9ceb5c942ebb9f3fe5c568053bd75b5ea1ee0a;hp=37019524408d27e206c81bb54fa655818ebe96cd;hpb=48cf1d7de82d12cdf3c0433d49d3c66f820f1609;p=pspp diff --git a/src/levene.h b/src/levene.h index 3701952440..1889a18a20 100644 --- a/src/levene.h +++ b/src/levene.h @@ -16,14 +16,15 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #if !levene_h #define levene_h 1 #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);