Subversion Repositories planix.SVN

Rev

Rev 33 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#include "os.h"
2
#include <libsec.h>
3
 
4
//
5
//  just use the libc prng to fill a buffer
6
//
7
void
8
prng(uchar *p, int n)
9
{
10
	uchar *e;
11
 
12
	for(e = p+n; p < e; p++)
13
		*p = rand();
14
}