AlexeyAB
2017-08-17 d3577a565de7d54950c8194e4ecc20b600e540d5
src/data.c
@@ -42,7 +42,11 @@
inline unsigned int random_gen()
{
   unsigned int Num = 0;
#ifdef WIN32
   rand_s(&Num);
#else
   Num = rand();
#endif
   return Num;
}