ref: 4308f6e7e6586e3a27aa46c4d54c434b8533b16d
dir: /sys/src/libsec/port/fastrand.c/
#include <u.h> #include <libc.h> #include <libsec.h> /* * use the X917 random number generator to create random * numbers (faster than truerand() but not as random). */ ulong fastrand(void) { ulong x; genrandom((uchar*)&x, sizeof x); return x; }