#include "random.h" #include int main() { set_random_seed(1842); for (int i = 0; i < 10; i++) { printf("%u\n", random_u32()); } return 0; }