Fixed warnings generated by gcc 4.1.2
[pspp-builds.git] / src / math / design-matrix.c
index 138813d7fb20f47d432a27bc0b7bf3fd98bc5f9b..8678f56ca9fa959f9f3acef1d42f97f57eba3974 100644 (file)
   Create design matrices for procedures that need them.
 */
 #include <config.h>
-#include <stdlib.h>
-#include <message.h>
-#include "alloc.h"
-#include "message.h"
-#include "variable.h"
-#include "category.h"
+
 #include "design-matrix.h"
-#include <string.h>
+
+#include <assert.h>
 #include <math.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include <libpspp/alloc.h>
+#include <libpspp/message.h>
+#include <data/variable.h>
+#include <data/category.h>
+
 #include <gsl/gsl_machine.h>
 #include <gsl/gsl_vector.h>
 #include <gsl/gsl_matrix.h>