summaryrefslogtreecommitdiff
path: root/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/debug.c b/debug.c
new file mode 100644
index 0000000..df2071b
--- /dev/null
+++ b/debug.c
@@ -0,0 +1,12 @@
+#include <time.h>
+#include <stdlib.h>
+#include <stdio.h>
+
+#include "tests.h"
+#include "matrix.h"
+
+int main()
+{
+ srand(time(NULL));
+ run_tests();
+}