[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug37999 06/11] RANK: Put #include directives into typical order.
From: |
Ben Pfaff |
Subject: |
[bug37999 06/11] RANK: Put #include directives into typical order. |
Date: |
Thu, 31 Jan 2013 22:03:28 -0800 |
---
src/language/stats/rank.c | 15 +++++----------
1 file changed, 5 insertions(+), 10 deletions(-)
diff --git a/src/language/stats/rank.c b/src/language/stats/rank.c
index 2fcf636..d9465ac 100644
--- a/src/language/stats/rank.c
+++ b/src/language/stats/rank.c
@@ -16,6 +16,9 @@
#include <config.h>
+#include <math.h>
+#include <gsl/gsl_cdf.h>
+
#include "data/case.h"
#include "data/casegrouper.h"
#include "data/casereader.h"
@@ -26,27 +29,19 @@
#include "data/subcase.h"
#include "data/casewriter.h"
#include "data/short-names.h"
-
#include "language/command.h"
#include "language/lexer/lexer.h"
#include "language/lexer/variable-parser.h"
#include "language/stats/sort-criteria.h"
-
#include "math/sort.h"
-
#include "libpspp/assertion.h"
+#include "libpspp/message.h"
#include "libpspp/misc.h"
-#include "libpspp/taint.h"
#include "libpspp/pool.h"
-#include "libpspp/message.h"
-
+#include "libpspp/taint.h"
#include "output/tab.h"
-#include <math.h>
-
-#include <gsl/gsl_cdf.h>
-
#include "gettext.h"
#define _(msgid) gettext (msgid)
#define N_(msgid) (msgid)
--
1.7.10.4
- [bug37999 00/11] Make RANK work with TEMPORARY., Ben Pfaff, 2013/02/01
- [bug37999 01/11] casegrouper: Add comments., Ben Pfaff, 2013/02/01
- [bug37999 04/11] RANK: Lowercase the name of "enum RANK_FUNC"., Ben Pfaff, 2013/02/01
- [bug37999 05/11] RANK: Remove write-only struct member 'ascending'., Ben Pfaff, 2013/02/01
- [bug37999 03/11] transformations: Relax the rules for transformation finalizing., Ben Pfaff, 2013/02/01
- [bug37999 06/11] RANK: Put #include directives into typical order.,
Ben Pfaff <=
- [bug37999 02/11] subcase: New function subcase_add_vars_always()., Ben Pfaff, 2013/02/01
- [bug37999 07/11] RANK: Simplify fraction_name() function., Ben Pfaff, 2013/02/01
- [bug37999 08/11] RANK: Simplify rank_sorted_file() with new function sum_weights()., Ben Pfaff, 2013/02/01
- [bug37999 09/11] RANK: Create all variables together, in order., Ben Pfaff, 2013/02/01
- [bug37999 11/11] RANK: Add support for temporary transformations., Ben Pfaff, 2013/02/01
- [bug37999 10/11] RANK: Adopt a new ranking implementation., Ben Pfaff, 2013/02/01