ref: 14b919faf8e69fb8c06bb397b5a87c2b9f00c3bb
dir: /sys/src/libsec/port/prng.c/
#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();
}