oksh-noxz[fork] Portable OpenBSD ksh, based on the Public Domain Korn Shell (pdksh). |
|
git clone https://noxz.tech/git/oksh-noxz.git | |
oksh-noxz |
commit: a2c12c5e4fa6424bd0f76ed8a79de393bae727a2 parent: 514407b037880bd8650101401ce8fda0eb0418df author: Brian Callahan <dodonpachi-github@mailinator.com> date: Fri, 9 Jan 2015 16:32:50 -0500
Fix srand cpp block
M | var.c | 2 | +- |
diff --git a/var.c b/var.c @@ -8,7 +8,7 @@ #include <limits.h> #include <stdlib.h> -#ifndef srand_deterministic +#ifndef __OpenBSD__ #define srand_deterministic(x) srand(x) #endif