trandcounts.c: simplify conditional macros - 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 274c96b0785a902cc65d91cdf191593cdac7a4f5
(DIR) parent bc0de099a997dd7945d335a8eebd947d50d61f42
(HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Thu, 5 May 2022 13:31:27 +0200
randcounts.c: simplify conditional macros
Diffstat:
M randcounts.c | 2 --
1 file changed, 0 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/randcounts.c b/randcounts.c
t@@ -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 */