ref: 673bb2f19f13a189a9cc8924ebe3c06b56c4cc3b dir: /libc/genrandom.c/
#include <u.h> #include <libc.h> #undef long #undef ulong #include <unistd.h> void genrandom(uchar *buf, int nbytes) { getentropy(buf, nbytes); }