ref: 1b09060f468f530af2f4ef75441a40084e912e54 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(); }