- Added include, according to random website which claims it makes the
  difference.
This commit is contained in:
Paul Beckingham 2009-07-01 19:59:46 -04:00
parent 389fa400a6
commit edcb719d94
2 changed files with 1 additions and 8 deletions

View file

@ -52,14 +52,6 @@ Context::Context ()
, cmd ()
, inShadow (false)
{
// Set up randomness.
/*
#ifdef HAVE_SRANDOM
srandom (time (NULL));
#else
srand (time (NULL));
#endif
*/
}
////////////////////////////////////////////////////////////////////////////////

View file

@ -27,6 +27,7 @@
#include <iostream>
#include <stdlib.h>
#include <time.h>
#include "Context.h"
Context context;