code: drawterm

ref: 0a8a66a42a7aa9d1dabcc3956a48bfa5436ecbb9
dir: /libsec/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();
}