Changed a lot of non-const pointers to const.
[pspp-builds.git] / src / math / levene.h
index ba7dea5d39864dc1e4ba2bf9b029be0b51e48cbe..66944dafb434325aaaf4cc97a781a3f82e0be1c7 100644 (file)
@@ -2,7 +2,6 @@
    Computes Levene test  statistic.
 
    Copyright (C) 2004 Free Software Foundation, Inc.
-   Written by John Darrington <john@darrington.wattle.id.au>
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -41,7 +40,8 @@ struct dictionary ;
 struct casefilter ;
 
 void  levene(const struct dictionary *dict, const struct casefile *cf, 
-            struct variable *v_indep, size_t n_dep, struct variable **v_dep,
+            const struct variable *v_indep, size_t n_dep, 
+            const struct variable **v_dep,
             struct casefilter *filter);