Make evutil_secure_rng_init() work even with builtin arc4random

This commit is contained in:
Nick Mathewson 2010-04-23 15:17:10 -04:00
parent 71fc3eb08b
commit f980716707

View File

@ -43,6 +43,8 @@
int
evutil_secure_rng_init(void)
{
/* call arc4random() now to force it to self-initialize */
(void) arc4random();
return 0;
}