summaryrefslogtreecommitdiff
path: root/tests.c
diff options
context:
space:
mode:
authorJasper2025-09-08 12:12:09 +0200
committerJasper2025-09-08 12:12:09 +0200
commitf8d2ae65bba18ae79695111960a74507cdda0132 (patch)
tree8e926f4a6053ed728d7c653dad32268487f1a06a /tests.c
parentf8ec4383f4bdfd9e0d582c2ece55fe22ce08d61c (diff)
Reordered includes
Diffstat (limited to 'tests.c')
-rw-r--r--tests.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests.c b/tests.c
index 9b2a4dc..416abcd 100644
--- a/tests.c
+++ b/tests.c
@@ -1,9 +1,9 @@
#include "tests.h"
-#include <assert.h>
-
#include "matrix.h"
+#include <assert.h>
+
void test_LR()
{
Matrix *A = matrix_from_str("[2 3 1;4 1 -5;-1 2 3]");