blob: 69541b6c3f02f9410329671e94b6db9ba8c9f02d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include "rand.h"
#include <cstdlib>
#include <util/random/random.h>
#include <util/system/types.h>
int utilRandom() {
return (int)RandomNumber((ui32)RAND_MAX);
}
|