summaryrefslogtreecommitdiff
path: root/frand.c
diff options
context:
space:
mode:
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;
+}