From 4b2ea2ca00eea7feea036b7642c0c1443b8f77a1 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sun, 3 May 2020 20:20:22 -0700 Subject: removed buggy qsort header and implemented myself --- sys/libmath/blas.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'sys/libmath/blas.c') diff --git a/sys/libmath/blas.c b/sys/libmath/blas.c index c2f7e6c..bbbe1c8 100644 --- a/sys/libmath/blas.c +++ b/sys/libmath/blas.c @@ -3,7 +3,6 @@ #include #include - #include // ----------------------------------------------------------------------- @@ -382,7 +381,6 @@ void blas·gemm(int n1, int n2, int n3, double a, double *m1, double *m2, double b, double *m3) { int i, j, k, len; - double prod; // TODO: Is there anyway this computation can be integrated into the one below? for (i = 0; i < n1; i++) { -- cgit v1.2.1