ref: 174b17bb208f2fe4a0973a91f3477d4f1df96c4a 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); }