From 20c087553300d3c92b9dd398f3c21dec30a2fa3c Mon Sep 17 00:00:00 2001 From: Stephen Lombardo Date: Tue, 16 Mar 2021 11:07:32 -0400 Subject: [PATCH] fix build when OMIT_MEMLOCK defined per #384 --- src/crypto_impl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/crypto_impl.c b/src/crypto_impl.c index c7214ed..0baff69 100644 --- a/src/crypto_impl.c +++ b/src/crypto_impl.c @@ -35,10 +35,10 @@ #include "crypto.h" #ifndef OMIT_MEMLOCK #if defined(__unix__) || defined(__APPLE__) || defined(_AIX) -#include -#include -#include -#include +#include /* amalgamator: dontcache */ +#include /* amalgamator: dontcache */ +#include /* amalgamator: dontcache */ +#include /* amalgamator: dontcache */ #elif defined(_WIN32) #include #endif