ref: 9a7efce5f114ba90987f12b441225b340d554ea6 dir: /libc/genrandom.c/
#include <u.h> #include <libc.h> #undef long #undef ulong #include <sys/random.h> void genrandom(uchar *buf, int nbytes) { getrandom(buf, nbytes, 0); }