From 7d7334a018a63e8d7f99f04c89d80900b34d844c Mon Sep 17 00:00:00 2001 From: Alessandro Capotondi Date: Wed, 21 Apr 2021 13:09:20 +0200 Subject: [PATCH] Added missing include in matmul.c --- openmp/lab3/matmul.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openmp/lab3/matmul.c b/openmp/lab3/matmul.c index 8f9f47f..5a510df 100644 --- a/openmp/lab3/matmul.c +++ b/openmp/lab3/matmul.c @@ -4,6 +4,8 @@ #include #include +#include "utils.h" + #ifndef N #define N (1 << 10) #endif