Skip to content

Commit 4504472

Browse files
committed
changed import to use brackets <> for openssl as they are not local to the project
1 parent 26de4df commit 4504472

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/tests.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
#include "util.h"
2222

2323
#ifdef ENABLE_OPENSSL_TESTS
24-
#include "openssl/bn.h"
25-
#include "openssl/ec.h"
26-
#include "openssl/ecdsa.h"
27-
#include "openssl/obj_mac.h"
24+
#include <openssl/bn.h>
25+
#include <openssl/ec.h>
26+
#include <openssl/ecdsa.h>
27+
#include <openssl/obj_mac.h>
2828
# if OPENSSL_VERSION_NUMBER < 0x10100000L
2929
void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps) {*pr = sig->r; *ps = sig->s;}
3030
# endif

0 commit comments

Comments
 (0)