From 4504472269df06b8765b134d41f86619cdcdf8f6 Mon Sep 17 00:00:00 2001 From: William Bright Date: Sat, 20 Mar 2021 19:59:51 -0400 Subject: [PATCH] changed import to use brackets <> for openssl as they are not local to the project --- src/tests.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tests.c b/src/tests.c index ba645bbe81eee..e0c8c85605a3d 100644 --- a/src/tests.c +++ b/src/tests.c @@ -21,10 +21,10 @@ #include "util.h" #ifdef ENABLE_OPENSSL_TESTS -#include "openssl/bn.h" -#include "openssl/ec.h" -#include "openssl/ecdsa.h" -#include "openssl/obj_mac.h" +#include +#include +#include +#include # if OPENSSL_VERSION_NUMBER < 0x10100000L void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps) {*pr = sig->r; *ps = sig->s;} # endif