shithub: plan9front

ref: b5086c1863fe10faf48ab675f503e562ec8dfcf0
dir: /sys/src/ape/lib/v/nrand.c/

View raw version
#include <stdlib.h>

#define	MASK	0x7FFFFFFFL
#define	FRACT	(1.0 / (MASK + 1.0))

extern long lrand(void);

double
frand(void)
{

	return lrand() * FRACT;
}

nrand(int n)
{
	long slop, v;

	slop = MASK % n;
	do
		v = lrand();
	while(v <= slop);
	return v % n;
}