tremove unused variables - numtools - perform numerical operations on vectors and matrices in unix pipes
 (HTM) git clone git://src.adamsgaard.dk/numtools
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 99dea624765baf7ba50b2fb3531c3ef7ea581685
 (DIR) parent b5d7078457ca9b963181e1fc65b5510d27f0fd78
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Thu,  2 Sep 2021 21:48:55 +0200
       
       remove unused variables
       
       Diffstat:
         M max.c                               |       1 -
         M mean.c                              |       1 -
         M min.c                               |       1 -
         M sum.c                               |       1 -
       
       4 files changed, 0 insertions(+), 4 deletions(-)
       ---
 (DIR) diff --git a/max.c b/max.c
       t@@ -11,7 +11,6 @@ main(void)
                size_t i = 0, nf = 0, nr = 0, linesize = 0;
                char *line = NULL, *data = NULL;
                double val, *vals = NULL;
       -        int offset;
        
                if (pledge("stdio", NULL) == -1)
                        err(2, "pledge");
 (DIR) diff --git a/mean.c b/mean.c
       t@@ -11,7 +11,6 @@ main(void)
                size_t i = 0, nf = 0, nr = 0, linesize = 0;
                char *line = NULL, *data = NULL;
                double val, *vals = NULL;
       -        int offset;
        
                if (pledge("stdio", NULL) == -1)
                        err(2, "pledge");
 (DIR) diff --git a/min.c b/min.c
       t@@ -11,7 +11,6 @@ main(void)
                size_t i = 0, nf = 0, nr = 0, linesize = 0;
                char *line = NULL, *data = NULL;
                double val, *vals = NULL;
       -        int offset;
        
                if (pledge("stdio", NULL) == -1)
                        err(2, "pledge");
 (DIR) diff --git a/sum.c b/sum.c
       t@@ -11,7 +11,6 @@ main(void)
                size_t i = 0, nf = 0, nr = 0, linesize = 0;
                char *line = NULL, *data = NULL;
                double val, *vals = NULL;
       -        int offset;
        
                if (pledge("stdio", NULL) == -1)
                        err(2, "pledge");