code: purgatorio

ref: e17484e9d82ce7db8472e6abfa71144ddc184ce4
dir: /libsec/port/prng.c/

View raw version
#include "os.h"
#include <mp.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();
}