shithub: riscv

ref: 6f15a730f351b75f24286cb937a96db1ee9e5b82
dir: /sys/src/libsec/port/prng.c/

View raw version
#include "os.h"
#include <libsec.h>

//
//  just use the libc prng to fill a buffer
//
void
prng(uchar *p, int n)
{
	uchar *e;

	for(e = p+n; p < e; p++)
		*p = rand();
}