ref: 416371c2d3ef3ca6e6d5e43433127927d53707f0
dir: /libsec/prng.c/
#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();
}