ref: 009439541d2c6e8af2596f8fb1b4df85861fd212
dir: /libc/genrandom.c/
#include <u.h>
#include <libc.h>
#undef long
#undef ulong
#include <unistd.h>
#ifdef __APPLE__
#include <sys/random.h>
#endif
void
genrandom(uchar *buf, int nbytes)
{
getentropy(buf, nbytes);
}