summaryrefslogtreecommitdiffstats
path: root/test/bntest.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-03-11 19:22:58 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-12 01:13:18 +0100
commit239b84e592386d6053e16295f80bb85f65ce3ef9 (patch)
tree4efcb8b74a72ae6917855027464158c545267fe0 /test/bntest.c
parentc3caf7603574184a2cf95134e679a2ff69d6ef05 (diff)
Because bn_expand2 is declared non-static, it must not be static
That doesn't change even to make a dummy to hide its unavailability. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test/bntest.c')
-rw-r--r--test/bntest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bntest.c b/test/bntest.c
index 53769aad60..57ccc1eb35 100644
--- a/test/bntest.c
+++ b/test/bntest.c
@@ -91,7 +91,7 @@
* avoid possible clashes with libcrypto, we rename it first, using a macro.
*/
#define bn_expand2 dummy_bn_expand2
-static BIGNUM *bn_expand2(BIGNUM *b, int words) { return NULL; }
+BIGNUM *bn_expand2(BIGNUM *b, int words) { return NULL; }
#include "../crypto/bn/bn_lcl.h"