1 /* connector for getentropy */ 2 3 #include <reent.h> 4 #include <sys/types.h> 5 #include <sys/time.h> 6 7 int getentropy(void * buf,size_t buflen)8 getentropy (void *buf, 9 size_t buflen) 10 { 11 return _getentropy_r (_REENT, buf, buflen); 12 } 13