Apply patch #5225, assertions.
[pspp-builds.git] / src / math / design-matrix.c
index 63c1dd9ecc6417dfef852e5122d99e9c3f61c1dc..8678f56ca9fa959f9f3acef1d42f97f57eba3974 100644 (file)
   Create design matrices for procedures that need them.
 */
 #include <config.h>
+
+#include "design-matrix.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 "design-matrix.h"
-#include <string.h>
-#include <math.h>
+
 #include <gsl/gsl_machine.h>
 #include <gsl/gsl_vector.h>
 #include <gsl/gsl_matrix.h>