{s,}rand -> {s,}random

🎩 @robrix
This commit is contained in:
Max Brunsfeld 2015-12-10 21:23:23 -08:00
parent 4ca965019f
commit da2dfd703a
2 changed files with 8 additions and 8 deletions

View file

@ -10,7 +10,7 @@ int main(int argc, char *argv[]) {
}
printf("Random seed: %d\n", seed);
srand(seed);
srandom(seed);
return bandit::run(argc, argv);
}