1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-19 18:15:18 -07:00

Revert "Disable getentropy() on Apple devices"

This reverts commit 9710a33ba1.
This commit is contained in:
Frank Denis 2019-06-02 20:39:01 +02:00
parent eef918da2f
commit 6a6a5cc79e

View File

@ -825,10 +825,6 @@ unsigned char buf;
# include <sys/random.h>
#endif
]], [[
#ifdef __APPLE__
# error getentropy() is currently disabled on Apple operating systems
#endif
unsigned char buf;
(void) getentropy((void *) &buf, 1U);
]])],