this is supposed to fix mingw builds - seems to be ok on linux
authorellson <devnull@localhost>
Mon, 5 Jan 2009 20:12:47 +0000 (20:12 +0000)
committerellson <devnull@localhost>
Mon, 5 Jan 2009 20:12:47 +0000 (20:12 +0000)
lib/neatogen/matinv.c
lib/neatogen/solve.c

index 1dca0066af802d1e26902519e2adcd157a333106..35ae9052addaf6250e3c985b1620bfe4dbb5b712 100644 (file)
@@ -42,7 +42,7 @@
 #else
 #endif
 #include <stdlib.h>
-#include <render.h>
+#include "render.h"
 extern int lu_decompose(double **a, int n);
 extern void lu_solve(double *x, double *b, int n);
 
index e4a8d4c23acd4fdd7ff10deaccd31b2b93fc80a9..e2e30c37eb764bc45d572475ffcbf9a68ad43a7c 100644 (file)
 
 
 /* solves the system ab=c using gauss reduction */
-#include <render.h>
 #include <math.h>
 #include <stdlib.h>
 #include <stdio.h>
+#include "render.h"
 #define asub(i,j) a[(i)*n + (j)]