shithub: riscv

ref: 04a8392f8c7c75f585d48360774c6f1faa950f0c
dir: /sys/src/libsec/port/fastrand.c/

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

/* 
 *  use the X917 random number generator to create random
 *  numbers (faster than truerand() but not as random).
 */
ulong
fastrand(void)
{
	ulong x;
	
	genrandom((uchar*)&x, sizeof x);
	return x;
}