SayoriOS  0.3.3
rand.c
1 #include "drv/cmos.h"
2 
3 int rand_seed = 5829466;
4 
5 int rand() {
6  rand_seed = (164525 * rand_seed + 101390423) % 4294967296;
7  return rand_seed;
8 }