From 1ca11da3479fcc98ed8343c9d83684a87a0ee052 Mon Sep 17 00:00:00 2001 From: Vitaly Chikunov Date: Sun, 5 Dec 2021 11:07:11 +0300 Subject: MSVC: Fix 'no OPENSSL_Applink' error Error message: OPENSSL_Uplink(00007FF9FB00F600,08): no OPENSSL_Applink Link: https://www.openssl.org/docs/faq.html#PROG3 Signed-off-by: Vitaly Chikunov --- test_gost2814789.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test_gost2814789.c') diff --git a/test_gost2814789.c b/test_gost2814789.c index 20e3fe0..211e577 100644 --- a/test_gost2814789.c +++ b/test_gost2814789.c @@ -7,6 +7,11 @@ * This file is distributed under the same license as OpenSSL * ==================================================================== */ +#ifdef _MSC_VER +# pragma warning(push, 3) +# include +# pragma warning(pop) +#endif #include #include -- cgit v1.1