rng.hpp 128 B

12345678910
  1. #ifndef myRNG_H
  2. #define myRNG_H
  3. #include <sys/types.h>
  4. #include <random>
  5. #include <mutex>
  6. uint32_t getRandomNumber();
  7. #endif