ref: 00e6f81a080c81828854db16160d8b58a5cd8ca9 dir: /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(); }