First round of changes from Stas Sergeev.
[super-star-trek.git] / linux.c
1 #include <stdlib.h>
2 #include <time.h>
3
4 void randomize(void) {
5         srand((int)time(NULL));
6 }
7
8