X-Git-Url: http://wagner.pp.ru/gitweb/?a=blobdiff_plain;f=test_context.c;h=d9ef57926e11d20b640064495ed7a92a3d2c756a;hb=f3de3689c492f4f45e1bbf4af2b6fab5b57dcecf;hp=fa0d2fab2b4f002768b3bf455b14f3f079a85ae2;hpb=b2b9839e2c43d7919f3d7a5a8266ab1cfaf58b8f;p=openssl-gost%2Fengine.git diff --git a/test_context.c b/test_context.c index fa0d2fa..d9ef579 100644 --- a/test_context.c +++ b/test_context.c @@ -5,6 +5,11 @@ * See https://www.openssl.org/source/license.html for details */ +#ifdef _MSC_VER +# pragma warning(push, 3) +# include +# pragma warning(pop) +#endif #include #include #include @@ -15,9 +20,10 @@ # include "gost_lcl.h" #endif -#define T(e) if (!(e)) {\ - ERR_print_errors_fp(stderr);\ - OpenSSLDie(__FILE__, __LINE__, #e);\ +#define T(e) \ + if (!(e)) { \ + ERR_print_errors_fp(stderr); \ + OpenSSLDie(__FILE__, __LINE__, #e); \ } #define cRED "\033[1;31m"