summaryrefslogtreecommitdiff
path: root/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'matrix.c')
-rw-r--r--matrix.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/matrix.c b/matrix.c
index aeaa8f1..3b915eb 100644
--- a/matrix.c
+++ b/matrix.c
@@ -1,8 +1,6 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include <stdbool.h>
#include "matrix.h"
+
void showMatrix(matrix *m){
for(int i = 0; i < m->rows; ++i){
for(int j = 0; j < m->cols; ++j){