Skip to content

Commit

Permalink
Commented the get_random_const function
Browse files Browse the repository at this point in the history
  • Loading branch information
ephox-gcc-plugins committed Jun 13, 2016
1 parent 049acd9 commit 4999276
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions latent_entropy_plugin.c
Expand Up @@ -86,6 +86,10 @@ static struct plugin_info latent_entropy_plugin_info = {
};

static unsigned HOST_WIDE_INT seed;
/* get_random_seed() (this is a GCC function) generates the seed.
* This is a simple random generator without any cryptographic security because
* the entropy doesn't come from here.
*/
static unsigned HOST_WIDE_INT get_random_const(void)
{
unsigned int i;
Expand Down

0 comments on commit 4999276

Please sign in to comment.