Skip to content

Commit

Permalink
changed import to use brackets <> for openssl as they are not local t…
Browse files Browse the repository at this point in the history
…o the project
  • Loading branch information
whb07 committed Mar 20, 2021
1 parent 26de4df commit 4504472
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/tests.c
Expand Up @@ -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 <openssl/bn.h>
#include <openssl/ec.h>
#include <openssl/ecdsa.h>
#include <openssl/obj_mac.h>
# 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
Expand Down

0 comments on commit 4504472

Please sign in to comment.