diff options
author | Jasper | 2025-09-08 12:12:09 +0200 |
---|---|---|
committer | Jasper | 2025-09-08 12:12:09 +0200 |
commit | f8d2ae65bba18ae79695111960a74507cdda0132 (patch) | |
tree | 8e926f4a6053ed728d7c653dad32268487f1a06a /matrix.c | |
parent | f8ec4383f4bdfd9e0d582c2ece55fe22ce08d61c (diff) |
Reordered includes
Diffstat (limited to 'matrix.c')
-rw-r--r-- | matrix.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,3 +1,7 @@ +#include "matrix.h" + +#include "utils.h" + #include <stdio.h> #include <stdlib.h> #include <assert.h> @@ -5,9 +9,6 @@ #include <math.h> #include <time.h> -#include "matrix.h" -#include "utils.h" - Matrix *matrix_alloc(size_t m, size_t n) { double *xs = calloc(m * n, sizeof(double)); |