Merge commit 'origin/stable'
[pspp-builds.git] / src / language / stats / npar-summary.h
index 4cd080a29958b3c94976b1d03fa7e8718f65e9e6..a8b12797c1c8b6667de481a41c5f05644a6a08d7 100644 (file)
@@ -17,8 +17,6 @@
 #if !n_par_summary_h
 #define n_par_summary_h 1
 
-#include <config.h>
-
 struct variable ;
 struct casereader ;
 struct dictionary;
@@ -32,6 +30,11 @@ struct descriptives
   double max;
 };
 
+void
+do_summary_box (const struct descriptives *desc,
+               const struct variable *const *vv,
+               int n_vars);
+
 void npar_summary_calc_descriptives (struct descriptives *desc,
                                     struct casereader *input,
                                     const struct dictionary *dict,
@@ -39,11 +42,4 @@ void npar_summary_calc_descriptives (struct descriptives *desc,
                                     int n_vars,
                                      enum mv_class filter);
 
-
-void do_summary_box (const struct descriptives *desc,
-                    const struct variable *const *vv,
-                    int n_vars);
-
-
-
 #endif