shithub: front

ref: b0f2f4e47d6d728914a551e40a547302b098bc4d
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;
}