1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef CMAJOR_RT_RANDOM_INCLUDED
 7 #define CMAJOR_RT_RANDOM_INCLUDED
 8 #include <cmajor/rt/RtApi.hpp>
 9 #include <stdint.h>
10 
11 extern "C" uint32_t RtGetRandomSeed();
12 extern "C" void RtInitRand(uint32_t seed);
13 extern "C" uint32_t RtRandom();
14 extern "C" uint64_t RtRandom64();
15 
16 #endif // CMAJOR_RT_RANDOM_INCLUDED