Update all #include directives to the currently preferred style.
[pspp-builds.git] / src / language / stats / friedman.h
index 4d271d8547f37dfd556698ef790b6a6c83539279..d6cf0036cf8341886108ef55f39affb8b686586b 100644 (file)
@@ -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
 
 #include <stddef.h>
 #include <stdbool.h>
-#include <language/stats/npar.h>
+#include "language/stats/npar.h"
 
+struct friedman_test
+{
+  struct one_sample_test parent;
+
+  /* Calculate and display the Kendall W statistic */
+  bool kendalls_w;
+};
 
 
 void friedman_execute (const struct dataset *ds,
-                       struct casereader *input,
-                        enum mv_class exclude,
-                       const struct npar_test *test,
-                       bool,
-                  double);
+                      struct casereader *input,
+                      enum mv_class exclude,
+                      const struct npar_test *test,
+                      bool,
+                      double);
 
 
 #endif