URI:
       trange.c: add missing newline char to output - numtools - perform numerical operations on vectors and matrices in unix pipes
  HTML git clone git://src.adamsgaard.dk/numtools
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit d7ec07cf8c41de0a001237eded7af64e8868b345
   DIR parent d97e551d2b850c6ce5f835281beec71baa94f4c0
  HTML Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Mon,  9 May 2022 17:55:04 +0200
       
       range.c: add missing newline char to output
       
       Diffstat:
         M range.c                             |       1 +
       
       1 file changed, 1 insertion(+), 0 deletions(-)
       ---
   DIR diff --git a/range.c b/range.c
       t@@ -74,6 +74,7 @@ main(int argc, char *argv[])
                                printf(fmtstr, pow(10, minv + i * dx));
                        else
                                printf(fmtstr, minv + i * dx);
       +                putchar('\n');
                }
        
                return 0;