Update all #include directives to the currently preferred style.
[pspp-builds.git] / src / language / stats / npar-summary.h
index 6cf6367cbee02d7ac267a2396f0794ef8bd9e84e..a78d1b7e2a22c7241f84b37d74b4fe85100b401d 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 2006 Free Software Foundation, Inc.
+   Copyright (C) 2006, 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
@@ -17,6 +17,8 @@
 #if !n_par_summary_h
 #define n_par_summary_h 1
 
+#include "data/missing-values.h"
+
 struct variable ;
 struct casereader ;
 struct dictionary;
@@ -30,6 +32,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,
@@ -37,11 +44,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