Diff

util/random.lua @ 7188:e8f20be3e6f8

Merge 0.10->trunk
author Kim Alvefur <zash@zash.se>
date Mon, 22 Feb 2016 18:46:59 +0100
parent 7187:3d2c2f0809ee
child 8241:e7496cff1215
child 8242:177873dc9cf3
line wrap: on
line diff
--- a/util/random.lua	Mon Feb 22 15:24:20 2016 +0100
+++ b/util/random.lua	Mon Feb 22 18:46:59 2016 +0100
@@ -6,6 +6,9 @@
 -- COPYING file in the source package for more information.
 --
 
+local ok, crand = pcall(require, "util.crand");
+if ok then return crand; end
+
 local urandom, urandom_err = io.open("/dev/urandom", "r");
 
 local function seed()