fix linux-specific compilation errors

This commit is contained in:
2024-10-27 15:36:14 +00:00
parent e77c3908eb
commit a86291ca75
5 changed files with 15 additions and 11 deletions

View File

@@ -125,7 +125,7 @@ static void init_by_array64(
}
/* generates a random number on [0, 2^64-1]-interval */
static unsigned long long genrand64_int64(struct b_random_ctx *context)
static uint64_t genrand64_int64(struct b_random_ctx *context)
{
#if 0
/* This is the original implementation. It is replaced by the alternate implementation, below. */