shithub: riscv

ref: 1c835e370ff58e58b75c12a9e743a2bb33d84cb0
dir: /sys/src/libc/port/nrand.c/

View raw version
#include	<u.h>
#include	<libc.h>

#define	MASK	0x7fffffffL

int
nrand(int n)
{
	long slop, v;

	if(n < 0)
		return n;
	if(n == 1)
		return 0;
	/* and if n == 0, you deserve what you get */
	slop = MASK % n;
	do
		v = lrand();
	while(v <= slop);
	return v % n;
}