ref: b548687a8ed1d0a159c9d3f3f921d93bbb56908e
dir: /libsec/port/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). */ u32 fastrand(void) { u32 x; genrandom((uchar*)&x, sizeof x); return x; }