QUICK CLUSTER: Update #include directives to match current style.
authorBen Pfaff <blp@cs.stanford.edu>
Tue, 26 Apr 2011 02:59:01 +0000 (19:59 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Tue, 26 Apr 2011 16:26:10 +0000 (09:26 -0700)
These days, usually system header files are #included first, using
<> notation, and then PSPP's one header files, using "" notation.
Each group is alphabetized.

src/language/stats/quick-cluster.c

index f22658cd194012351e9cc488909276c1a4cd4808..764d18c8c6513ed30addd4544f4331d7457dd2b4 100644 (file)
 
 #include <config.h>
 
-#include <math.h>
-
-#include <libpspp/misc.h>
-
-#include <libpspp/str.h>
-#include <libpspp/message.h>
-
-
-#include <data/dataset.h>
-#include <data/missing-values.h>
-#include <data/casereader.h>
-#include <data/casewriter.h>
-#include <data/casegrouper.h>
-#include <data/dictionary.h>
-#include <data/format.h>
-#include <data/case.h>
-
-#include <language/lexer/variable-parser.h>
-#include <language/command.h>
-#include <language/lexer/lexer.h>
-
-#include <output/tab.h>
-#include <output/text-item.h>
-
-#include <stdio.h>
-#include <stdlib.h>
-
 #include <gsl/gsl_matrix.h>
-#include <gsl/gsl_statistics.h>
 #include <gsl/gsl_permutation.h>
 #include <gsl/gsl_sort_vector.h>
+#include <gsl/gsl_statistics.h>
+#include <math.h>
+#include <stdio.h>
+#include <stdlib.h>
 
-#include <math/random.h>
+#include "data/case.h"
+#include "data/casegrouper.h"
+#include "data/casereader.h"
+#include "data/casewriter.h"
+#include "data/dataset.h"
+#include "data/dictionary.h"
+#include "data/format.h"
+#include "data/missing-values.h"
+#include "language/command.h"
+#include "language/lexer/lexer.h"
+#include "language/lexer/variable-parser.h"
+#include "libpspp/message.h"
+#include "libpspp/misc.h"
+#include "libpspp/str.h"
+#include "math/random.h"
+#include "output/tab.h"
+#include "output/text-item.h"
 
 #include "gettext.h"
 #define _(msgid) gettext (msgid)