1 2 3 4 5 6 7 8 9 10
#include <unistd.h> #include <syscall.h> int getentropy(void *buffer, size_t length) { (void)buffer; (void)length; // TODO return 0; }