From 99cdf506c9fd66272b3297eb20a5ca002f89e7a0 Mon Sep 17 00:00:00 2001 From: Songling Han Date: Mon, 28 Oct 2024 07:45:00 +0000 Subject: [PATCH] fix build error Signed-off-by: Songling Han --- src/common/rand/rand.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/rand/rand.c b/src/common/rand/rand.c index 478d7443d..b76c784d4 100644 --- a/src/common/rand/rand.c +++ b/src/common/rand/rand.c @@ -17,9 +17,9 @@ #include -OQS_STATUS OQS_randombytes_system(uint8_t *random_array, size_t bytes_to_read); +void OQS_randombytes_system(uint8_t *random_array, size_t bytes_to_read); #ifdef OQS_USE_OPENSSL -OQS_STATUS OQS_randombytes_openssl(uint8_t *random_array, size_t bytes_to_read); +void OQS_randombytes_openssl(uint8_t *random_array, size_t bytes_to_read); #endif #ifdef OQS_USE_OPENSSL