From 68ce5f0b824d7cf9d71b09bb235cf219defcc7b4 Mon Sep 17 00:00:00 2001 From: Sean Molenaar Date: Thu, 16 Nov 2023 16:40:50 +0100 Subject: [PATCH] fix: add missing stdlib header includes --- src/library/blas/gens/gemv.c | 1 + src/library/blas/gens/symv.c | 1 + 2 files changed, 2 insertions(+) diff --git a/src/library/blas/gens/gemv.c b/src/library/blas/gens/gemv.c index 9835482f..17f34f4a 100644 --- a/src/library/blas/gens/gemv.c +++ b/src/library/blas/gens/gemv.c @@ -19,6 +19,7 @@ * gemv generator */ +#include #include #include #include diff --git a/src/library/blas/gens/symv.c b/src/library/blas/gens/symv.c index 47c8f1d2..355838b7 100644 --- a/src/library/blas/gens/symv.c +++ b/src/library/blas/gens/symv.c @@ -19,6 +19,7 @@ * symv generator */ +#include #include #include #include