From 7d74c2146db65a20e93e98d51b2d3e9af2ae0709 Mon Sep 17 00:00:00 2001 From: qmuntal Date: Thu, 5 Dec 2024 15:07:46 +0100 Subject: [PATCH] include stdlib.h --- internal/ossl/thread_setup_unix.c | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/ossl/thread_setup_unix.c b/internal/ossl/thread_setup_unix.c index 4447671..deac8ff 100644 --- a/internal/ossl/thread_setup_unix.c +++ b/internal/ossl/thread_setup_unix.c @@ -3,6 +3,7 @@ #include "api.h" #include "thread_setup.h" #include +#include /* This array will store all of the mutexes available to OpenSSL. */ static pthread_mutex_t *mutex_buf = NULL;