numtools

perform numerical operations on vectors and matrices in unix pipes
git clone git://src.adamsgaard.dk/numtools # fast
git clone https://src.adamsgaard.dk/numtools.git # slow
Log | Files | Refs | README | LICENSE Back to index

commit 274c96b0785a902cc65d91cdf191593cdac7a4f5
parent bc0de099a997dd7945d335a8eebd947d50d61f42
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Thu,  5 May 2022 13:31:27 +0200

randcounts.c: simplify conditional macros

Diffstat:
Mrandcounts.c | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/randcounts.c b/randcounts.c @@ -71,8 +71,6 @@ main(int argc, char *argv[]) srand48_deterministic(seed); #else srand48(seed); -#endif -#ifndef __OpenBSD__ else { gettimeofday(&t1, NULL); srand48(t1.tv_sec * t1.tv_usec); /* Caveat: identical seed for each ms */