diff options
Diffstat (limited to 'src/util/rand_xor.h')
-rw-r--r-- | src/util/rand_xor.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/util/rand_xor.h b/src/util/rand_xor.h index d5144e98230..532d549bcda 100644 --- a/src/util/rand_xor.h +++ b/src/util/rand_xor.h @@ -26,8 +26,12 @@ #define RAND_XOR_H #include <stdint.h> +#include <stdbool.h> uint64_t rand_xorshift128plus(uint64_t *seed); +void +s_rand_xorshift128plus(uint64_t *seed, bool randomised_seed); + #endif /* RAND_XOR_H */ |