summaryrefslogtreecommitdiff
path: root/frand.c
diff options
context:
space:
mode:
authorJustin Bedo <cu@cua0.org>2013-08-10 08:36:48 +1000
committerJustin Bedo <cu@cua0.org>2013-08-10 08:36:48 +1000
commitf85676749888e99fec419236d4823fe6250eddd1 (patch)
tree3bae597f74c8fb73860dc6448429cbaf719fbbb1 /frand.c
Initial importHEADmaster
Diffstat (limited to 'frand.c')
-rw-r--r--frand.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/frand.c b/frand.c
new file mode 100644
index 0000000..e13e1d8
--- /dev/null
+++ b/frand.c
@@ -0,0 +1,17 @@
+#include <u.h>
+#include <libc.h>
+
+#define MASK 0x7fffffffL
+#define NORM (1.0/(1.0+MASK))
+
+double
+frand(void)
+{
+ double x;
+
+ do {
+ x = lrand() * NORM;
+ x = (x + lrand()) * NORM;
+ } while(x >= 1);
+ return x;
+}