ref: 1a02ec3b5c4f3cb41c7a5b377c5fffa0a415e3b7
dir: /libsec/fastrand.c/
#include "os.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; }