summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2010-09-05 16:34:49 +0000
committerBen Laurie <ben@openssl.org>2010-09-05 16:34:49 +0000
commit5df2a2497a3e1ad7d5a386bbe34d3be9eb3a0ba3 (patch)
tree27843575c366be3f4977c58dcfb73e4fad8b5587 /crypto
parent4ed7b78b560e9eee7c8e201824a065c2de281ba8 (diff)
Fix warnings.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/ec/ectest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/ec/ectest.c b/crypto/ec/ectest.c
index bed3b096b0..834d54ab59 100644
--- a/crypto/ec/ectest.c
+++ b/crypto/ec/ectest.c
@@ -234,7 +234,7 @@ static void group_order_tests(EC_GROUP *group)
BN_CTX_free(ctx);
}
-void prime_field_tests()
+static void prime_field_tests()
{
BN_CTX *ctx = NULL;
BIGNUM *p, *a, *b;
@@ -777,7 +777,7 @@ void prime_field_tests()
if (!EC_GROUP_copy(_variable, group)) ABORT; \
-void char2_field_tests()
+static void char2_field_tests()
{
BN_CTX *ctx = NULL;
BIGNUM *p, *a, *b;
@@ -1211,7 +1211,7 @@ void char2_field_tests()
}
-void internal_curve_test(void)
+static void internal_curve_test(void)
{
EC_builtin_curve *curves = NULL;
size_t crv_len = 0, n = 0;