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